Completed a first version of an escort follow function!!!

And made a test mission for it.
This commit is contained in:
FlightControl
2016-03-29 09:37:32 +02:00
parent 260f109e40
commit 6834a5f6ea
12 changed files with 136 additions and 10 deletions

View File

@@ -0,0 +1,19 @@
Include.File( "Mission" )
Include.File( "Client" )
Include.File( "Escort" )
do
local EscortClient = CLIENT:New( "Lead Helicopter", "Fly around and observe the behaviour of the escort helicopter" )
local EscortGroup = GROUP:NewFromName( "Escort Helicopter" )
local Escort = ESCORT:New( EscortClient, EscortGroup, "Escort Test" )
end
-- MISSION SCHEDULER STARTUP
MISSIONSCHEDULER.Start()
MISSIONSCHEDULER.ReportMenu()
MISSIONSCHEDULER.ReportMissionsHide()
env.info( "Test Mission loaded" )