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

20 lines
537 B
C#

//======= Copyright (c) Valve Corporation, All rights reserved. ===============
//
// Purpose: Flips the camera output back to normal for D3D.
//
//=============================================================================
using UnityEngine;
namespace Valve.VR
{
[ExecuteInEditMode]
public class SteamVR_CameraFlip : MonoBehaviour
{
void Awake()
{
Debug.Log("<b>[SteamVR]</b> SteamVR_CameraFlip is deprecated in Unity 5.4 - REMOVING");
DestroyImmediate(this);
}
}
}