Amazon.Runtime.Internal.UnityMainThreadDispatcher.Awake C# (CSharp) Метод

Awake() публичный Метод

This method is called called when the script instance is being loaded.
public Awake ( ) : void
Результат void
        public void Awake()
        {
            _logger = Logger.GetLogger(this.GetType());
            // Call the method to process requests at a regular interval.
            _nextUpdateTime = Time.unscaledTime;
            _nextUpdateTime += _updateInterval;
        }