diag getTerrainSegmentOffset: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
BrettMayson (talk | contribs) mNo edit summary |
||
(13 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{RV|type=command | {{RV|type=command | ||
|game1= | |game1= arma3 | ||
|version1= 2. | |version1= 2.04 | ||
|branch= diag | |||
|gr1= Diagnostic | |gr1= Diagnostic | ||
|descr= Returns the terrain segment. It is basically the same as: | |descr= Returns the terrain segment. It is basically the same as: | ||
< | <sqf> | ||
_worldPos params ["_x", "_y"]; | |||
[floor (_x / diag_getTerrainGrid), floor (_y / diag_getTerrainGrid)]; | |||
</sqf> | |||
|s1= [[diag_getTerrainSegmentOffset]] worldPos | |||
|p1= worldPos: [[Array]] format [[Position#Introduction|Position2D]] or [[Position#Introduction|Position3D]] - world coordinates | |||
|r1= [[Array]] format [[Position#Introduction|Position2D]] - [x,y] of terrain segment (integer, basically pixel coordinates in heightmap) | |||
| | |x1= <sqf>private _segmentOffset = diag_getTerrainSegmentOffset getPosWorld player;</sqf> | ||
|seealso= [[diag_getTerrainHeight]] | |seealso= [[diag_getTerrainHeight]] [[diag_getTerrainGrid]] | ||
}} | }} |
Latest revision as of 10:57, 16 June 2024
Description
- Description:
- Returns the terrain segment. It is basically the same as:
_worldPos params ["_x", "_y"]; [floor (_x / diag_getTerrainGrid), floor (_y / diag_getTerrainGrid)];
- Groups:
- Diagnostic
Syntax
- Syntax:
- diag_getTerrainSegmentOffset worldPos
- Parameters:
- worldPos: Array format Position2D or Position3D - world coordinates
- Return Value:
- Array format Position2D - [x,y] of terrain segment (integer, basically pixel coordinates in heightmap)
Examples
- Example 1:
Additional Information
- See also:
- diag_getTerrainHeight diag_getTerrainGrid
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