Beispiel #1
0
 // Token: 0x06002FBF RID: 12223 RVA: 0x000CCAF4 File Offset: 0x000CACF4
 public override void FixedUpdate()
 {
     base.FixedUpdate();
     this.stopwatch += Time.fixedDeltaTime;
     if (this.stopwatch > this.duration)
     {
         Burrowed burrowed = new Burrowed();
         burrowed.duration = Burrowed.mortarCooldown;
         this.outer.SetNextState(burrowed);
     }
 }
 // Token: 0x06002FB5 RID: 12213 RVA: 0x000CC740 File Offset: 0x000CA940
 public override void FixedUpdate()
 {
     base.FixedUpdate();
     this.stopwatch += Time.fixedDeltaTime;
     if (this.stopwatch >= this.duration && base.isAuthority)
     {
         Burrowed nextState = new Burrowed();
         this.outer.SetNextState(nextState);
         return;
     }
 }