コード例 #1
0
 public override void Awake()
 {
     Instance = this;
 }
コード例 #2
0
ファイル: TimerComponent.cs プロジェクト: x00568/ET
        public static async ETTask <bool> WaitFrameAsync(this TimerComponent self, ETCancellationToken cancellationToken = null)
        {
            bool ret = await self.WaitAsync(1, cancellationToken);

            return(ret);
        }