Gvr.Internal.EmulatorManager.Awake C# (CSharp) Method

Awake() public method

public Awake ( ) : void
return void
    public void Awake() {
      if (instance == null) {
        instance = this;
      }
      if (instance != this) {
        Debug.LogWarning("PhoneRemote must be a singleton.");
        enabled = false;
        return;
      }
    }