modelToWorldVisualWorld: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ |()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}")
m (Fix)
 
(22 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= Object Manipulation
|gr1= Object Manipulation
|gr2= Render Time Scope
|gr2= Render Time Scope


| Converts position from object model space to world space in render time.
|descr= Converts position from object model space to world space in render time scope. For the [[Position#PositionAGL|PositionAGL]] version see [[modelToWorldVisual]].
{{Feature|important|
For [[setObjectScale|scaled objects]], the relative position will first be [[vectorMultiply|multiplied]] by the object scale.<br>
For example, if the object's scale is 2, <sqf inline>_obj modelToWorldVisualWorld [0,1,0]</sqf> will be offset '''2 meters''' from the model center (<sqf inline>[0,0,0]</sqf>).
}}
 
|s1= obj [[modelToWorldVisualWorld]] modelPos


| obj '''modelToWorldVisualWorld''' modelPos
|p1= obj: [[Object]]
|p1= obj: [[Object]]
|p2= modelPos: [[Array]]
| [[Array]] - World position in format [[PositionASL]]


|x1= <code>[[player]] [[modelToWorldVisualWorld]] [0,1,0]</code>
|p2= modelPos: [[Array]] format [[Position#PositionRelative|PositionRelative]]


|seealso= [[modelToWorldWorld]], [[modelToWorldVisual]], [[getPosWorldVisual]]
|r1= [[Array]] in format [[Position#PositionASL|PositionASL]] - '''the model's centre''' (see [[getPosWorld]])
}}


|x1= <sqf>player modelToWorldVisualWorld [0,1,0];</sqf>


<!-- CONTINUE Notes -->
|seealso= [[modelToWorldWorld]] [[modelToWorldVisual]] [[getPosWorldVisual]]
<dl class="command_description">
}}
<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 [[modelToWorldVisual]] command used in conjunction with [[AGLToASL]]
<code>obj [[modelToWorldVisualWorld]] [1,2,3] [[isEqualTo]] [[AGLToASL]] (obj [[modelToWorldVisual]] [1,2,3]); // true</code>
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 16:46, 1 July 2022

Hover & click on the images for description

Description

Description:
Converts position from object model space to world space in render time scope. For the PositionAGL version see modelToWorldVisual.
For scaled objects, the relative position will first be multiplied by the object scale.
For example, if the object's scale is 2, _obj modelToWorldVisualWorld [0,1,0] will be offset 2 meters from the model center ([0,0,0]).
Groups:
Object ManipulationRender Time Scope

Syntax

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

Examples

Example 1:
player modelToWorldVisualWorld [0,1,0];

Additional Information

See also:
modelToWorldWorld modelToWorldVisual getPosWorldVisual

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