void Awake() { appToken = TinySauce.getToken(); if (appToken == "") { throw new MissingFieldException("Go here", new Exception("No Adjust token found please add it to your tinysauce settings")); Debug.Break(); return; } if (IsEditor()) { return; } DontDestroyOnLoad(transform.gameObject); if (!this.startManually) { AdjustConfig adjustConfig = new AdjustConfig(this.appToken, this.environment, (this.logLevel == AdjustLogLevel.Suppress)); adjustConfig.setLogLevel(this.logLevel); adjustConfig.setSendInBackground(this.sendInBackground); adjustConfig.setEventBufferingEnabled(this.eventBuffering); adjustConfig.setLaunchDeferredDeeplink(this.launchDeferredDeeplink); Adjust.start(adjustConfig); } }