worldToModel: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
(60 intermediate revisions by 16 users not shown)
Line 1: Line 1:
[[Category:Scripting Commands|WORLDTOMODEL]]
{{RV|type=command
[[Category:Scripting Commands ArmA|WORLDTOMODEL]]


|game1= arma1
|version1= 1.00


|game2= arma2
|version2= 1.00


<h2 style="color:#000066">''object'' ''''' worldToModel''''' ''worldPos''</h2>
|game3= arma2oa
|version3= 1.50


|game4= tkoh
|version4= 1.00


'''Operand types:'''
|game5= arma3
|version5= 0.50


'''object:''' [[Object]]
|gr1= Positions


'''worldPos:''' [[Array]]
|descr= Converts position from world space to object model space.
{{Feature|important|For [[setObjectScale|scaled objects]], the relative position will be [[vectorMultiply|divided]] by the object scale.}}
|s1= model [[worldToModel]] position


'''Type of returned value:'''
|p1= model: [[Object]]


[[Array]]
|p2= position: [[Array]] format [[Position#PositionAGL|PositionAGL]] or [[Position#Introduction|Position2D]] - world position


'''Compatibility:'''
|r1= [[Array]] format [[Position#PositionRelative|PositionRelative]] - position relative to model


Version 2.92 required.
|x1= <sqf>_relPos = myObject worldToModel [0,0,0];</sqf>


'''Description:'''
|x2= <sqf>_relPos = player worldToModel ASLToAGL getPosASL car;</sqf>


Converts position from world space to object model space.
|x3= <sqf>_relPos = car worldToModel [12000,5000];</sqf>
 
|seealso= [[worldToModelVisual]] [[vectorWorldToModel]] [[modelToWorld]]
}}

Latest revision as of 10:53, 16 June 2024

Hover & click on the images for description

Description

Description:
Converts position from world space to object model space.
For scaled objects, the relative position will be divided by the object scale.
Groups:
Positions

Syntax

Syntax:
model worldToModel position
Parameters:
model: Object
position: Array format PositionAGL or Position2D - world position
Return Value:
Array format PositionRelative - position relative to model

Examples

Example 1:
_relPos = myObject worldToModel [0,0,0];
Example 2:
_relPos = player worldToModel ASLToAGL getPosASL car;
Example 3:
_relPos = car worldToModel [12000,5000];

Additional Information

See also:
worldToModelVisual vectorWorldToModel modelToWorld

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