IMHOTEP Framework
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Pages
SteamVR_CameraMask.cs
1 //======= Copyright (c) Valve Corporation, All rights reserved. ===============
2 //
3 // Purpose: Masks out pixels that cannot be seen through the connected hmd.
4 //
5 //=============================================================================
6 
7 using UnityEngine;
8 
9 [ExecuteInEditMode]
10 public class SteamVR_CameraMask : MonoBehaviour
11 {
12  void Awake()
13  {
14  Debug.Log("SteamVR_CameraMask is deprecated in Unity 5.4 - REMOVING");
15  DestroyImmediate(this);
16  }
17 }
18