Ejemplo n.º 1
0
    void Start()
    {
        controller           = this.GetComponent <HovercarAdvanced>();
        controller.MaxSpeed *= SpeedModifier;

        this.GetComponentInChildren <DetectAhead>().enabled   = false;
        this.GetComponentInChildren <Rigidbody>().isKinematic = true;
    }
Ejemplo n.º 2
0
 void Start()
 {
     controller = this.GetComponent <HovercarAdvanced>();
 }
Ejemplo n.º 3
0
 void Start()
 {
     controller = this.GetComponent <HovercarAdvanced>();
     center     = new Vector3(Screen.width / 2, Screen.height / 2, 0);
 }
Ejemplo n.º 4
0
 void Start()
 {
     navigator         = GetComponentInParent <AINavigator>();
     controller        = GetComponentInParent <HovercarAdvanced>();
     detectedBuildings = new List <Transform>();
 }
Ejemplo n.º 5
0
 void Start()
 {
     controller           = this.GetComponent <HovercarAdvanced>();
     controller.MaxSpeed *= SpeedModifier;
 }