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

//======= Copyright (c) Valve Corporation, All rights reserved. ===============
//
// Purpose: Helper to update poses when using native OpenVR integration.
//
//=============================================================================
using UnityEngine;
[ExecuteInEditMode]
public class SteamVR_UpdatePoses : MonoBehaviour
{
void Awake()
{
Debug.Log("SteamVR_UpdatePoses has been deprecated - REMOVING");
DestroyImmediate(this);
}
}