void Awake() { Application.logMessageReceived += ApplicationOnlogMessageReceived; if (FindObjectOfType <EmteqVRManager>() != null && Instance != null) { Destroy(this.gameObject); return; } ShowContactPrompt = _showContactPrompt; DontDestroyOnLoad(this.gameObject); Instance = this; }
public void ExitGaze(string objectName) { EmteqVRManager.EndDataSection($"Gaze:{objectName}"); }
public void EnterGaze(string objectName) { EmteqVRManager.StartDataSection($"Gaze:{objectName}"); }
private void OnHideSubtitle(string subtitle) { //Debug.Log(subtitle+" Hide"); EmteqVRManager.EndDataSection(subtitle); }
private void OnShowSubtitle(string subtitle) { //Debug.Log(subtitle+" Show"); EmteqVRManager.StartDataSection(subtitle); }