Exemple #1
0
    void Start()
    {
        currentState = awarenessState.idle;

        drone_detector      = this.transform.Find("drone_detector").GetComponent <Drone_detection_controller>();
        drone_weapon_system = this.transform.Find("drone_weapon_system").GetComponent <Drone_weapon_system_controller>();
    }
Exemple #2
0
 public void ChangeState(awarenessState targetState)
 {
     currentState = targetState;
 }