KEngine.AppEngine.Awake C# (CSharp) Méthode

Awake() private méthode

private Awake ( ) : void
Résultat void
        private void Awake()
        {
            IsDebugBuild = Debug.isDebugBuild;
            ShowFps = IsDebugBuild;

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

            EngineInstance = this;

            Init();
        }