Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
432 B

  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. }