using UnityEngine; using System.Collections; namespace Valve.VR { public class SteamVR_CameraHelper : MonoBehaviour { void Start() { #if OPENVR_XR_API && UNITY_LEGACY_INPUT_HELPERS if (this.gameObject.GetComponent() == null) { this.gameObject.AddComponent(); } #endif } } }