modelToWorldVisualWorld: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "<!-- Appropriate categories go here -->" to "") |
m (Text replacement - " <h3 style='display:none'>Bottom Section</h3>" to "") |
||
Line 34: | Line 34: | ||
</dl> | </dl> | ||
{{GameCategory|arma3|New Scripting Commands}} | {{GameCategory|arma3|New Scripting Commands}} |
Revision as of 15:29, 18 January 2021
Description
- Description:
- Converts position from object model space to world space in render time.
- Groups:
- Object ManipulationRender Time Scope
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
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
- 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