BIS fnc GC: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Generated by BIS_fnc_exportFunctionsToWiki)
 
m (Created page with "{{Function|= Comments ____________________________________________________________________________________________ | TKOH |= Game name |1.00|= Game version ____________________...")
Line 1: Line 1:
{{Function|= Comments
{{Function|= Comments
____________________________________________________________________________________________
____________________________________________________________________________________________


| tkoh |= Game name
| TKOH |= Game name


|1.00|= Game version
|1.00|= Game version
____________________________________________________________________________________________
____________________________________________________________________________________________


| <pre>/*
| Sends an entity to the garbage collection queue. |= Description
 
Description:
Sends an entity to the garbage collection queue.
 
Parameter(s):
_this select 0: the entity
Returns:
Success flag (Boolean).
*/
 
</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_GC]]; --> |= Syntax
| entity spawn GC; |= Syntax


|p1= |= Parameter 1
|p1= '''entity''': [[Object]] or [[Group]] or [[String]] (marker) or [[Array]] (array of entities) |=


| |= Return value
| [[Boolean]] - true if function was executed successfuly |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________
 
|x1= <code>[dude1] spawn BIS_fnc_GC;</code>|=


|x1= <code></code> |=  
|x2= <code>[dude1, [[group]] dude1, "marker1"] spawn BIS_fnc_GC;</code>|=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 45: Line 34:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Function Group: Debug|{{uc:GC}}]]
 
[[Category:Functions|{{uc:GC}}]]
[[Category:Take_On_Helicopters:_Functions|gc]]
[[Category:{{Name|tkoh}}: Functions|{{uc:GC}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:GC}}]]

Revision as of 09:14, 21 October 2011

Hover & click on the images for description

Description

Description:
Sends an entity to the garbage collection queue.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
entity spawn GC;
Parameters:
entity: Object or Group or String (marker) or Array (array of entities)
Return Value:
Boolean - true if function was executed successfuly

Examples

Example 1:
[dude1] spawn BIS_fnc_GC;
Example 2:
[dude1, group dude1, "marker1"] spawn BIS_fnc_GC;

Additional Information

See also:
See also needed

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section