예제 #1
0
 public void clearBehaviour()
 {
     idle = true;
     active_behaviour = null;
 }
예제 #2
0
 public void clearBehaviour()
 {
     idle             = true;
     active_behaviour = null;
 }
예제 #3
0
 public void setBehaviour(GBehaviour behaviour)
 {
     active_behaviour = behaviour;
     behaviour.owner = this;
     idle = false;
 }
예제 #4
0
 public void setBehaviour(GBehaviour behaviour)
 {
     active_behaviour = behaviour;
     behaviour.owner  = this;
     idle             = false;
 }