BIS fnc relPosObject: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Page filling)
m (template:command argument fix)
Line 8: Line 8:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Place an object relative to another object, like a ''setRelPos'' command. |= Description
| Place an object relative to another object, like a ''setRelPos'' command. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [parent, child, relPos, direction] call [[BIS_fnc_relPosObject]] |= Syntax
| [parent, child, relPos, direction] call [[BIS_fnc_relPosObject]] |SYNTAX=


|p1= parent: [[Object]] - the parent object |= Parameter 1
|p1= parent: [[Object]] - the parent object |PARAMETER1=


|p2= child: [[Object]] - the child object |= Parameter 2
|p2= child: [[Object]] - the child object |PARAMETER2=


|p3= relPos: [[Position]] - ''child'' position relative to ''parent'' |= Parameter 3
|p3= relPos: [[Position]] - ''child'' position relative to ''parent'' |PARAMETER3=


|p4= direction: [[Number]] - (Optional, default 0) direction of the child object |= Parameter 4
|p4= direction: [[Number]] - (Optional, default 0) direction of the child object |PARAMETER4=


| [[Nothing]] |= Return value
| [[Nothing]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code>[BIS_briefingTable, BIS_map, [0, -0.58, 0.857], 98] [[call]] [[BIS_fnc_relPosObject]];</code> |= Example 1
|x1= <code>[BIS_briefingTable, BIS_map, [0, -0.58, 0.857], 98] [[call]] [[BIS_fnc_relPosObject]];</code> |EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[getRelPos]], [[getPos]] |= See also
| [[getRelPos]], [[getPos]] |SEEALSO=
}}
}}



Revision as of 15:32, 7 April 2019


Hover & click on the images for description

Description

Description:
Place an object relative to another object, like a setRelPos command.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[parent, child, relPos, direction] call BIS_fnc_relPosObject
Parameters:
parent: Object - the parent object
child: Object - the child object
relPos: Position - child position relative to parent
direction: Number - (Optional, default 0) direction of the child object
Return Value:
Nothing

Examples

Example 1:
[BIS_briefingTable, BIS_map, [0, -0.58, 0.857], 98] call BIS_fnc_relPosObject;

Additional Information

See also:
getRelPosgetPos

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