Add mission Group functions (activate, enableEmission)

This commit is contained in:
omltcat 2024-07-26 14:05:20 -04:00
parent bfbe153d9f
commit d4e341db28

View File

@ -18,9 +18,16 @@ Group.Category = {
---@return Group ---@return Group
function Group.getByName(name) end function Group.getByName(name) end
---Activates the group if the group has a delayed start or late activation.
function Group:activate() end
---Destroys the group, physically removing it from the game world without creating an event. The entire group simply disappears. ---Destroys the group, physically removing it from the game world without creating an event. The entire group simply disappears.
function Group:destroy() end function Group:destroy() end
---Sets the passed group radar emitters on or off. Can be used on sam sites for example to shut down the radar without setting AI off or changing the alarm state.
---@param setting boolean
function Group:enableEmission(setting) end
---Returns an enumerator of the category for the specific group. <br> ---Returns an enumerator of the category for the specific group. <br>
---See enumerators Group.Category for further reference. ---See enumerators Group.Category for further reference.
---@return Group.Category -- The category and sub-category of the object. ---@return Group.Category -- The category and sub-category of the object.