Skip to content

Commit

Permalink
Changed start on awake to start manually
Browse files Browse the repository at this point in the history
  • Loading branch information
nonelse committed Mar 27, 2014
1 parent 5fb89c1 commit d044e0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified Adjust.unitypackage
Binary file not shown.
4 changes: 2 additions & 2 deletions Assets/Adjust.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ public class Adjust : MonoBehaviour {
public Util.LogLevel logLevel = Util.LogLevel.Info;
public Util.Environment environment = Util.Environment.Sandbox;
public bool eventBuffering = false;
public bool startOnAwake = false;
public bool startManually = false;

void Awake() {
if (this.startOnAwake) {
if (!this.startManually) {
Adjust.appDidLaunch(this.appToken, this.environment, this.logLevel, this.eventBuffering);
}
}
Expand Down

0 comments on commit d044e0e

Please sign in to comment.