Beispiel #1
0
    public void TestAutopilotHeadingAbove360()
    {
        AutopilotModel ap = new AutopilotModel();

        ap.setTargetHeading(400f);
        Assert.AreEqual(40f, ap.getTargetHeading());
    }
Beispiel #2
0
    public void TestAutopilotOn()
    {
        AutopilotModel ap = new AutopilotModel();

        ap.setAutopilotOn(true);
        Assert.IsTrue(ap.isAutopilotOn());
    }
Beispiel #3
0
    public void TestAutopilotHeadingLessThanZero()
    {
        AutopilotModel ap = new AutopilotModel();

        ap.setTargetHeading(-10f);
        Assert.AreEqual(350f, ap.getTargetHeading());
    }
Beispiel #4
0
 // Use this for initialization
 void Start()
 {
     autopilot = new AutopilotModel();
     rb        = GetComponent <Rigidbody> ();
 }