setUnitFreefallHeight: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 3: Line 3:
|game1= arma3
|game1= arma3
|version1= 2.10
|version1= 2.10
|branch= dev
 


|arg= local
|arg= local
Line 11: Line 11:
|gr1= Object Manipulation
|gr1= Object Manipulation


|descr= Sets minimum freefall height AGL per unit, at which the unit assumes HALO pose. Current engine default is 100m. Use -1 to reset the height to default.
|descr= Sets minimum freefall height AGL per unit, at which the unit assumes HALO pose. Engine default is 100m. Use -1 to reset the height to default.


|s1= unit [[setUnitFreefallHeight]] minHeight
|s1= unit [[setUnitFreefallHeight]] minHeight
Line 17: Line 17:
|p1= unit: [[Object]] - unit
|p1= unit: [[Object]] - unit


|p2= minHeight: [[String]] - min freefall height, -1 to set default
|p2= minHeight: [[Number]] - min freefall height, -1 to set default


|r1= [[Nothing]]
|r1= [[Nothing]]
|x1= <code>[[player]] [[setUnitFreefallHeight]] 1000;</code>


|seealso= [[getUnitFreefallInfo]] [[getPosASL]] [[ASLtoAGL]]
|x1= <sqf>player setUnitFreefallHeight 1000;</sqf>
 
|seealso= [[getUnitFreefallInfo]] [[getPosASL]] [[ASLToAGL]]
}}
 
{{Note
|user= Hypoxic125
|timestamp= 20240607233513
|text= For player units, you must reapply setUnitFreefallHeight upon respawning.
}}
}}

Latest revision as of 01:35, 8 June 2024

Hover & click on the images for description

Description

Description:
Sets minimum freefall height AGL per unit, at which the unit assumes HALO pose. Engine default is 100m. Use -1 to reset the height to default.
Groups:
Object Manipulation

Syntax

Syntax:
unit setUnitFreefallHeight minHeight
Parameters:
unit: Object - unit
minHeight: Number - min freefall height, -1 to set default
Return Value:
Nothing

Examples

Example 1:
player setUnitFreefallHeight 1000;

Additional Information

See also:
getUnitFreefallInfo getPosASL ASLToAGL

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
Hypoxic125 - c
Posted on Jun 07, 2024 - 23:35 (UTC)
For player units, you must reapply setUnitFreefallHeight upon respawning.