Esempio n. 1
0
    void FixedUpdate()
    {
        updateCounters();

        moveDelegate.FixedUpdate(this);
        this.transform.position = moveDelegate.getPosition();
    }
Esempio n. 2
0
 void FixedUpdate()
 {
     if (dead)
     {
         return;
     }
     moveDel.FixedUpdate(this);
     this.transform.position = moveDel.getPosition();
 }
Esempio n. 3
0
 void FixedUpdate()
 {
     movementDelegate.FixedUpdate(this);
     this.transform.position = movementDelegate.getPosition();
 }