worldToModelVisual: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (template:command argument fix)
m (template:command argument fix)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


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


| object '''worldToModelVisual''' worldPosition
| object '''worldToModelVisual''' worldPosition
|p1= object: [[Object]] |= Parameter 1
|p1= object: [[Object]] |PARAMETER1=


|p2= worldPosition: [[Array]] - format [[PositionAGL]] or [[Position2D]] |= Parameter 2
|p2= worldPosition: [[Array]] - format [[PositionAGL]] or [[Position2D]] |PARAMETER2=


| [[Array]] - [[PositionRelative]] |= Return value
| [[Array]] - [[PositionRelative]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
Line 28: Line 28:
</code>|EXAMPLE1=
</code>|EXAMPLE1=


|x4= <code>_relPos = unit [[worldToModelVisual]] [[position]] tank;</code> |= Example 1
|x4= <code>_relPos = unit [[worldToModelVisual]] [[position]] tank;</code> |EXAMPLE1=
________________________________________________________________________________
________________________________________________________________________________


| [[worldToModel]], [[vectorWorldToModelVisual]], [[modelToWorldVisual]], [[modelToWorld]]  |= See also
| [[worldToModel]], [[vectorWorldToModelVisual]], [[modelToWorldVisual]], [[modelToWorld]]  |SEEALSO=


}}
}}

Revision as of 15:51, 7 April 2019

Hover & click on the images for description

Description

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

Syntax

Syntax:
object worldToModelVisual worldPosition
Parameters:
object: Object
worldPosition: Array - format PositionAGL or Position2D
Return Value:
Array - PositionRelative

Examples

Example 1:
_relPos = myObject worldToModelVisual [0,0,0];
Example 2:
_relPos = player worldToModelVisual position car;
Example 3:
_relPos = car worldToModelVisual [12000,5000];
Example 4:
_relPos = unit worldToModelVisual position tank;

Additional Information

See also:
worldToModelvectorWorldToModelVisualmodelToWorldVisualmodelToWorld

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