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
450 B

  1. //======= Copyright (c) Valve Corporation, All rights reserved. ===============
  2. //
  3. // Purpose: Helper to update poses when using native OpenVR integration.
  4. //
  5. //=============================================================================
  6. using UnityEngine;
  7. [ExecuteInEditMode]
  8. public class SteamVR_UpdatePoses : MonoBehaviour
  9. {
  10. void Awake()
  11. {
  12. Debug.Log("SteamVR_UpdatePoses has been deprecated - REMOVING");
  13. DestroyImmediate(this);
  14. }
  15. }