BIS fnc relPosObject: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (1 revision)
(Page filling)
Line 8: Line 8:
____________________________________________________________________________________________
____________________________________________________________________________________________


| <pre>/*******************************************************************************
| Place an object relative to another object, like a ''setRelPos'' command. |= Description
 
____________________________________________________________________________________________
 
Description:
Place object relative to another object.
 
Parameter(s):
_this select 0: OBJECT - parent object
_this select 1: OBJECT - child object what will be placed
_this select 2: ARRAY  - offset [x,y,z] in parent object coords
_this select 3: SCALAR (optional) - direction of the child object
 
Example:
[BIS_briefingTable,BIS_map,[0,0,1]] call BIS_fnc_relPosObject;
 
Returns:
-


Example of quick preview code:
| [parent, child, relPos, direction] call [[BIS_fnc_relPosObject]] |= Syntax
[BIS_briefingTable,BIS_map,[0,-0.58,0.857],98] call BIS_fnc_relPosObject;
BIS_briefingTable setPos getPos BIS_briefingTable;


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


</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
|p2= child: [[Object]] - the child object |= Parameter 2
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_relPosObject]]; --> |= Syntax
|p3= relPos: [[Position]] - ''child'' position relative to ''parent'' |= Parameter 3


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


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


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


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



Revision as of 00:41, 27 April 2018


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