boB 21a16e637f Revert "retire Steam VR"
This reverts commit f627f1e1c3e7c010a70ba1eacfb7b3aab85ffd43.
2021-11-11 16:51:51 -05:00

20 lines
553 B
C#

//======= Copyright (c) Valve Corporation, All rights reserved. ===============
//
// Purpose: Masks out pixels that cannot be seen through the connected hmd.
//
//=============================================================================
using UnityEngine;
namespace Valve.VR
{
[ExecuteInEditMode]
public class SteamVR_CameraMask : MonoBehaviour
{
void Awake()
{
Debug.Log("<b>[SteamVR]</b> SteamVR_CameraMask is deprecated in Unity 5.4 - REMOVING");
DestroyImmediate(this);
}
}
}