Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions SingularSDK/Runtime/SingularSDK.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class SingularSDK : MonoBehaviour
public int logLevel = 3;

private static SingularSDK instance = null;
private static bool Initialized = false;
public static bool Initialized { get; private set; } = false;

private const string UNITY_WRAPPER_NAME = "Unity";
private const string UNITY_VERSION = "5.2.0";
Expand Down Expand Up @@ -1850,4 +1850,4 @@ public SingularGlobalProperty(string key, string value, bool overrideExisting)
}
}
}
}
}