selectionPosition: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Some wiki formatting) |
(2.08 update) |
||
Line 38: | Line 38: | ||
|r1= [[Array]] - [[Position#PositionRelative|relative position]] in model space. If selection does not exist, {{ic|[0, 0, 0]}} is returned. | |r1= [[Array]] - [[Position#PositionRelative|relative position]] in model space. If selection does not exist, {{ic|[0, 0, 0]}} is returned. | ||
|s2= object [[selectionPosition]] [selectionName, LOD] | |s2= object [[selectionPosition]] [selectionName, LOD, detectionMode] | ||
|s2since= arma3 1.50 | |s2since= arma3 1.50 | ||
Line 47: | Line 47: | ||
|p23= LOD: [[String]] or [[Number]] - can be one of: | |p23= LOD: [[String]] or [[Number]] - can be one of: | ||
* "Memory" | * {{ic|"Memory"}} | ||
* "Geometry" | * {{ic|"Geometry"}} | ||
* "FireGeometry" | * {{ic|"FireGeometry"}} | ||
* "LandContact" | * {{ic|"LandContact"}} | ||
* "HitPoints" | * {{ic|"HitPoints"}} | ||
* {{GVI|arma3|2.06|size= 0.75}} "ViewGeometry" | * {{GVI|arma3|2.06|size= 0.75}} {{ic|"ViewGeometry"}} | ||
When [[Number]] is used, command searches for a LOD with the similar [[LOD resolutions|LOD resolution]] | When [[Number]] is used, command searches for a LOD with the similar [[LOD resolutions|LOD resolution]] | ||
|p23since= arma3 2.06 | |p23since= arma3 2.06 | ||
| | |p24= detectionMode: [[String]] (Optional, default {{ic|"FirstPoint"}}) - can be one of: | ||
* {{ic|"FirstPoint"}} | |||
* {{ic|"AveragePoint"}} | |||
* {{ic|"BoundingBox"}} | |||
|s3= [[selectionPosition]] [object, selectionName, LODIndex, isVisual] | |p24since= arma3 2.08 | ||
|r2= [[Array]] - [[Position#PositionRelative|relative position]] in model space. If selection does not exist, {{ic|[0, 0, 0]}} is returned. If detectionMode is {{ic|"BoundingBox"}}, [[Array]] of [[Array]]s | |||
|s3= [[selectionPosition]] [object, selectionName, LODIndex, isVisual, detectionMode] | |||
|s3since= arma3 2.06 | |s3since= arma3 2.06 | ||
Line 70: | Line 77: | ||
|p44= isVisual: [[Boolean]] - (Optional, default [[true]]) [[true]] for Render, [[false]] for Simulation [[Simulation_vs_Render_Time_Scope|time scope]] | |p44= isVisual: [[Boolean]] - (Optional, default [[true]]) [[true]] for Render, [[false]] for Simulation [[Simulation_vs_Render_Time_Scope|time scope]] | ||
|r3= [[Array]] - [[Position#PositionRelative|relative position]] in model space. If selection does not exist, {{ic|[0, 0, 0]}} is returned. | |p45= detectionMode: [[String]] (Optional, default {{ic|"FirstPoint"}}) - can be one of: | ||
* {{ic|"FirstPoint"}} | |||
* {{ic|"AveragePoint"}} | |||
* {{ic|"BoundingBox"}} | |||
|p45since= arma3 2.08 | |||
|r3= [[Array]] - [[Position#PositionRelative|relative position]] in model space. If selection does not exist, {{ic|[0, 0, 0]}} is returned. If detectionMode is {{ic|"BoundingBox"}}, [[Array]] of [[Array]]s | |||
|x1= <code>_inModelPosition = [[player]] [[selectionPosition]] "head_hit";</code> | |x1= <code>_inModelPosition = [[player]] [[selectionPosition]] "head_hit";</code> | ||
Line 79: | Line 93: | ||
|x4= <code>_inModelPosition = [[player]] [[selectionPosition]] "camera";</code> | |x4= <code>_inModelPosition = [[player]] [[selectionPosition]] "camera";</code> | ||
|x5= <code>stomper [[selectionPosition]] ["wheel_1_1", "HitPoints", "FirstPoint"]; {{cc|[-0.774058,0.860854,-1.40365]}} | |||
stomper [[selectionPosition]] ["wheel_1_1", "HitPoints", "AveragePoint"]; {{cc|[-0.597142,1.35486,-1.58345]}} | |||
stomper [[selectionPosition]] ["wheel_1_1", "HitPoints", "BoundingBox"]; {{cc|[[-0.774058,0.860854,-2.07746],[-0.420225,1.84887,-1.08944]]}}</code> | |||
|seealso= [[modelToWorld]] [[selectionNames]] [[getAllHitPointsDamage]] [[allLODs]] [[LOD resolutions]] | |seealso= [[modelToWorld]] [[selectionNames]] [[getAllHitPointsDamage]] [[allLODs]] [[LOD resolutions]] | ||
Line 89: | Line 107: | ||
<code>[[player]] [[selectionPosition]] ["head", "Memory"]; {{cc|[0.173798,0.330415,1.37783]}} | <code>[[player]] [[selectionPosition]] ["head", "Memory"]; {{cc|[0.173798,0.330415,1.37783]}} | ||
[[player]] [[selectionPosition]] ["head", "FireGeometry"]; {{cc|[0.14375,0.206039,1.44689]}} | [[player]] [[selectionPosition]] ["head", "FireGeometry"]; {{cc|[0.14375,0.206039,1.44689]}} | ||
[[player]] [[selectionPosition]] ["head", "HitPoints"]; {{cc|[0.144257,0.306769,1.53471]}} | [[player]] [[selectionPosition]] ["head", "HitPoints"]; {{cc|[0.144257,0.306769,1.53471]}}</code> | ||
}} | }} |
Revision as of 10:24, 14 March 2022
Description
- Description:
- Returns selection position in model space pertaining to the current animation in render time scope. When the default syntax is used, command searches first in Memory level, then in Geometry level, FireGeometry level, LandContact level, HitPoints level and finally in ViewGeometry level and returns the first matching find. The second syntax allows to specify which one of these levels to search in instead.
- Groups:
- Object ManipulationRender Time Scope
Syntax 1
- Syntax:
- object selectionPosition selectionName
- Parameters:
- object: Object
- selectionName: String
- Return Value:
- Array - relative position in model space. If selection does not exist,
[0, 0, 0]
is returned.
Syntax 2
- Syntax:
- object selectionPosition [selectionName, LOD, detectionMode]
- Parameters:
- object: Object
- selectionName: String
- since 2.06
- LOD: String or Number - can be one of:
"Memory"
"Geometry"
"FireGeometry"
"LandContact"
"HitPoints"
- 2.06
"ViewGeometry"
- since 2.08
- detectionMode: String (Optional, default
"FirstPoint"
) - can be one of:"FirstPoint"
"AveragePoint"
"BoundingBox"
- Return Value:
- Array - relative position in model space. If selection does not exist,
[0, 0, 0]
is returned. If detectionMode is"BoundingBox"
, Array of Arrays
Syntax 3
- Syntax:
- selectionPosition [object, selectionName, LODIndex, isVisual, detectionMode]
- Parameters:
- object: Object
- selectionName: String
- LODIndex: Number - the index of the target LOD (see allLODs)
- isVisual: Boolean - (Optional, default true) true for Render, false for Simulation time scope
- since 2.08
- detectionMode: String (Optional, default
"FirstPoint"
) - can be one of:"FirstPoint"
"AveragePoint"
"BoundingBox"
- Return Value:
- Array - relative position in model space. If selection does not exist,
[0, 0, 0]
is returned. If detectionMode is"BoundingBox"
, Array of Arrays
Examples
- Example 1:
_inModelPosition = player selectionPosition "head_hit";
- Example 2:
_inModelPosition = player selectionPosition "pelvis";
- Example 3:
_inModelPosition = player selectionPosition "head";
- Example 4:
_inModelPosition = player selectionPosition "camera";
- Example 5:
stomper selectionPosition ["wheel_1_1", "HitPoints", "FirstPoint"]; // [-0.774058,0.860854,-1.40365] stomper selectionPosition ["wheel_1_1", "HitPoints", "AveragePoint"]; // [-0.597142,1.35486,-1.58345] stomper selectionPosition ["wheel_1_1", "HitPoints", "BoundingBox"]; // [[-0.774058,0.860854,-2.07746],[-0.420225,1.84887,-1.08944]]
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 Jun 25, 2017 - 15:13 (UTC)
-
Do use the filter that comes with Syntax 2 to suit your needs. For example player has 3 selections called "head" and their selectionPositions are quite different from each other:
player selectionPosition ["head", "Memory"]; // [0.173798,0.330415,1.37783] player selectionPosition ["head", "FireGeometry"]; // [0.14375,0.206039,1.44689] player selectionPosition ["head", "HitPoints"]; // [0.144257,0.306769,1.53471]
Categories:
- Scripting Commands
- Introduced with Armed Assault version 1.00
- ArmA: Armed Assault: New Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Object Manipulation
- Command Group: Render Time Scope