Merge pull request #194 from FlightControl-Master/FlightControl

commit
This commit is contained in:
Sven Van de Velde 2017-01-13 20:08:37 +01:00 committed by GitHub
commit 3f6487c410
3 changed files with 6 additions and 6 deletions

View File

@ -175,9 +175,9 @@ function AI_PATROLZONE:New( PatrolZone, PatrolFloorAltitude, PatrolCeilingAltitu
self.PatrolFuelTresholdPercentage = 0.2
self:SetStartState( "Route" )
self:SetStartState( "None" )
do self:AddTransition( "Route", "Start", "Route" ) -- FSM_CONTROLLABLE Transition for type #AI_PATROLZONE.
do self:AddTransition( "*", "Start", "Route" ) -- FSM_CONTROLLABLE Transition for type #AI_PATROLZONE.
--- OnLeave State Transition for Route.
-- @function [parent=#AI_PATROLZONE] OnLeaveRoute
@ -224,7 +224,7 @@ do self:AddTransition( "Route", "Start", "Route" ) -- FSM_CONTROLLABLE Transitio
end -- AI_PATROLZONE
do self:AddTransition( "Route", "Route", "Route" ) -- FSM_CONTROLLABLE Transition for type #AI_PATROLZONE.
do self:AddTransition( "*", "Route", "Route" ) -- FSM_CONTROLLABLE Transition for type #AI_PATROLZONE.
--- OnLeave State Transition for Route.
-- @function [parent=#AI_PATROLZONE] OnLeaveRoute
@ -271,7 +271,7 @@ do self:AddTransition( "Route", "Route", "Route" ) -- FSM_CONTROLLABLE Transitio
end -- AI_PATROLZONE
do self:AddTransition( { "Patrol", "Route" }, "Patrol", "Patrol" ) -- FSM_CONTROLLABLE Transition for type #AI_PATROLZONE.
do self:AddTransition( "*", "Patrol", "Patrol" ) -- FSM_CONTROLLABLE Transition for type #AI_PATROLZONE.
--- OnLeave State Transition for Patrol.
-- @function [parent=#AI_PATROLZONE] OnLeavePatrol

View File

@ -1,5 +1,5 @@
env.info( '*** MOOSE STATIC INCLUDE START *** ' )
env.info( 'Moose Generation Timestamp: 20170113_1958' )
env.info( 'Moose Generation Timestamp: 20170113_2007' )
local base = _G
Include = {}

View File

@ -1,5 +1,5 @@
env.info( '*** MOOSE STATIC INCLUDE START *** ' )
env.info( 'Moose Generation Timestamp: 20170113_1958' )
env.info( 'Moose Generation Timestamp: 20170113_2007' )
local base = _G
Include = {}