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;
        }