modelToWorldVisualWorld: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Text replacement - "{{Command|=" to "{{Command|Comments=")
(11 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|=
{{Command|Comments=
____________________________________________________________________________________________
____________________________________________________________________________________________


|arma3|= Game
|arma3|= Game
|1.70|= Game Version
|1.70|Game Version=
|arg=  |= Multiplayer Arguments
|arg=  |Multiplayer Arguments=
|eff=  |= Multiplayer Effects
|eff=  |Multiplayer Effects=


____________________________________________________________________________________________
____________________________________________________________________________________________


| Converts position from object model space to world space in render time. |= Description
| Converts position from object model space to world space in render time. |DESCRIPTION=


____________________________________________________________________________________________
____________________________________________________________________________________________


| obj '''modelToWorldVisualWorld''' modelPos |= Syntax
| obj '''modelToWorldVisualWorld''' modelPos |SYNTAX=
|p1= obj: [[Object]] |= Parameter 1
|p1= obj: [[Object]] |PARAMETER1=
|p2= modelPos: [[Array]] |= Parameter 2
|p2= modelPos: [[Array]] |PARAMETER2=
| [[Array]] |= Return Value
| [[Array]] - World position in format [[PositionASL]] |RETURNVALUE=


|x1= <code>([[getPos]] [[player]]) [[modelToWorldVisualWorld]] [0,1,0]</code> |= Example 1
|x1= <code>[[player]] [[modelToWorldVisualWorld]] [0,1,0]</code> |EXAMPLE1=


| [[modelToWorldWorld]] |= See Also
| [[modelToWorldWorld]], [[modelToWorldVisual]], [[getPosWorldVisual]] |SEEALSO=
}}
}}


Line 39: Line 39:
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Render Time Scope Scripting Commands|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<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 -->

Revision as of 23:32, 2 September 2019

Hover & click on the images for description

Description

Description:
Converts position from object model space to world space in render time.
Groups:
Uncategorised

Syntax

Syntax:
obj modelToWorldVisualWorld modelPos
Parameters:
obj: Object
modelPos: Array
Return Value:
Array - World position in format PositionASL

Examples

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

Additional Information

See also:
modelToWorldWorldmodelToWorldVisualgetPosWorldVisual

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

Bottom Section


Posted on May 28, 2017 - 22:19 (UTC)
Killzone Kid
This command produces identical result to modelToWorldVisual command used in conjunction with AGLToASL obj modelToWorldVisualWorld [1,2,3] isEqualTo AGLToASL (obj modelToWorldVisual [1,2,3]); // true