KEngine.AppEngine.Awake C# (CSharp) Method

Awake() private method

private Awake ( ) : void
return void
        private void Awake()
        {
            IsDebugBuild = Debug.isDebugBuild;
            ShowFps = IsDebugBuild;

            if (EngineInstance != null)
            {
                Log.Error("Duplicated Instance Engine!!!");
            }

            EngineInstance = this;

            Init();
        }