mirror of
https://github.com/FlightControl-Master/MOOSE_MISSIONS.git
synced 2026-08-24 16:41:31 +00:00
9 lines
416 B
Lua
9 lines
416 B
Lua
|
|
local FollowGroupSet = SET_GROUP:New():FilterCategories("plane"):FilterCoalitions("blue"):FilterPrefixes("Follow"):FilterStart()
|
|
FollowGroupSet:Flush()
|
|
local LeaderUnit = UNIT:FindByName( "Leader" )
|
|
local LargeFormation = AI_FORMATION:New( LeaderUnit, FollowGroupSet, "Left Line Formation", "Briefing" ):TestSmokeDirectionVector(true)
|
|
LargeFormation:FormationLeftLine( 500, 0, 250, 0 )
|
|
LargeFormation:__Start( 1 )
|
|
|