diag getTerrainSegmentOffset: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "Position2D" to "Position2D") |
BrettMayson (talk | contribs) mNo edit summary |
||
(4 intermediate revisions by one other user not shown) | |||
Line 10: | Line 10: | ||
|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]] | |s1= [[diag_getTerrainSegmentOffset]] worldPos | ||
|p1= | |p1= worldPos: [[Array]] format [[Position#Introduction|Position2D]] or [[Position#Introduction|Position3D]] - world coordinates | ||
|r1= [[Array]] | |r1= [[Array]] format [[Position#Introduction|Position2D]] - [x,y] of terrain segment (integer, basically pixel coordinates in heightmap) | ||
|x1= < | |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