SteamVR_GameView.cs 432 B

123456789101112131415161718
  1. //======= Copyright (c) Valve Corporation, All rights reserved. ===============
  2. //
  3. // Purpose: Handles rendering to the game view window
  4. //
  5. //=============================================================================
  6. using UnityEngine;
  7. [ExecuteInEditMode]
  8. public class SteamVR_GameView : MonoBehaviour
  9. {
  10. void Awake()
  11. {
  12. Debug.Log("SteamVR_GameView is deprecated in Unity 5.4 - REMOVING");
  13. DestroyImmediate(this);
  14. }
  15. }