modelToWorldWorld: Difference between revisions

From Bohemia Interactive Community
m (Text replacement - "<dl class="command_description"> <dd class="notedate">" to "<dl class="command_description"> <dt></dt> <dd class="notedate">")
mNo edit summary
 
(17 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


|arma3|= Game
|game1= arma3
|1.70
|version1= 1.70
|arg=
 
|eff=
|arg= global


|gr1= Positions
|gr1= Positions


| Converts position from object model space to world space (usable by [[setPosWorld]] for example).
|descr= Converts position from object model space to world space in [[Position#PositionASL|PositionASL]] format from the object's centre position.
{{Feature|important|
For [[setObjectScale|scaled objects]], the relative position will first be [[vectorMultiply|multiplied]] by the object scale.<br>
For example, if the object scale is 2, <sqf inline>_obj modelToWorldWorld [0,1,0]</sqf> will be offset '''2 meters''' from the model center (<sqf inline>[0,0,0]</sqf>).
}}
 
|s1= obj [[modelToWorldWorld]] modelPos


| obj [[modelToWorldWorld]] modelPos
|p1= obj: [[Object]]
|p1= obj: [[Object]]
|p2= modelPos: [[Array]]
| [[Array]]:


|x1= <code>[[player]] [[modelToWorldWorld]] [0,1,0]</code>
|p2= modelPos: [[Position#PositionRelative|PositionRelative]]
 
|r1= [[Position#PositionASL|PositionASL]] - '''the model's centre''' (see [[getPosWorld]])
 
|x1= <sqf>private _playersFrontWorld = player modelToWorldWorld [0,1,0];</sqf>


|seealso= [[modelToWorldVisualWorld]]
|seealso= [[modelToWorldVisualWorld]]
}}
}}
<!-- CONTINUE Notes -->
<dl class="command_description">
<dt></dt>
<dd class="notedate">Posted on May 28, 2017 - 22:19 (UTC)</dd>
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
<dd class="note">
This command produces identical result to [[modelToWorld]] command used in conjunction with [[AGLToASL]]
<code>obj [[modelToWorldWorld]] [1,2,3] [[isEqualTo]] [[AGLToASL]] (obj [[modelToWorld]] [1,2,3]); {{cc|true}}</code>
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 07:47, 2 January 2026

Hover & click on the images for description

Description

Description:
Converts position from object model space to world space in PositionASL format from the object's centre position.
For scaled objects, the relative position will first be multiplied by the object scale.
For example, if the object scale is 2, _obj modelToWorldWorld [0,1,0] will be offset 2 meters from the model center ([0,0,0]).
Groups:
Positions

Syntax

Syntax:
obj modelToWorldWorld modelPos
Parameters:
obj: Object
modelPos: PositionRelative
Return Value:
PositionASL - the model's centre (see getPosWorld)

Examples

Example 1:
private _playersFrontWorld = player modelToWorldWorld [0,1,0];

Additional Information

See also:
modelToWorldVisualWorld

Notes

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