Merge remote-tracking branch 'origin/master' into develop

This commit is contained in:
Applevangelist 2024-01-31 17:54:09 +01:00
commit fd155f8277
2 changed files with 12 additions and 6 deletions

View File

@ -1689,8 +1689,8 @@ function SPAWN:SpawnWithIndex( SpawnIndex, NoBirth )
-- If there is a SpawnFunction hook defined, call it. -- If there is a SpawnFunction hook defined, call it.
if self.SpawnFunctionHook then if self.SpawnFunctionHook then
-- delay calling this for .1 seconds so that it hopefully comes after the BIRTH event of the group. -- delay calling this for .3 seconds so that it hopefully comes after the BIRTH event of the group.
self.SpawnHookScheduler:Schedule( nil, self.SpawnFunctionHook, { self.SpawnGroups[self.SpawnIndex].Group, unpack( self.SpawnFunctionArguments ) }, 0.1 ) self.SpawnHookScheduler:Schedule( nil, self.SpawnFunctionHook, { self.SpawnGroups[self.SpawnIndex].Group, unpack( self.SpawnFunctionArguments ) }, 0.3 )
end end
-- TODO: Need to fix this by putting an "R" in the name of the group when the group repeats. -- TODO: Need to fix this by putting an "R" in the name of the group when the group repeats.
-- if self.Repeat then -- if self.Repeat then

View File

@ -1132,8 +1132,9 @@ function GROUP:GetAverageVec3()
-- Average. -- Average.
local Vec3={x=x/n, y=y/n, z=z/n} --DCS#Vec3 local Vec3={x=x/n, y=y/n, z=z/n} --DCS#Vec3
return Vec3 return Vec3
end else
return nil return self:GetVec3()
end
end end
--- Returns a POINT_VEC2 object indicating the point in 2D of the first UNIT of the GROUP within the mission. --- Returns a POINT_VEC2 object indicating the point in 2D of the first UNIT of the GROUP within the mission.
@ -1167,8 +1168,13 @@ function GROUP:GetAverageCoordinate()
coord.Heading = Heading coord.Heading = Heading
return coord return coord
else else
BASE:E( { "Cannot GetAverageCoordinate", Group = self, Alive = self:IsAlive() } ) local coord = self:GetCoordinate()
return nil if coord then
return coord
else
BASE:E( { "Cannot GetAverageCoordinate", Group = self, Alive = self:IsAlive() } )
return nil
end
end end
end end