diag getTerrainSegmentOffset: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
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]] PositionWorld | |s1= [[diag_getTerrainSegmentOffset]] PositionWorld | ||
Line 19: | Line 21: | ||
|r1= [[Array]]: In format [[Position#Introduction|Position2D]], which is [x,y] of terrain segment (integer, basically pixel coordinates in heightmap) | |r1= [[Array]]: In format [[Position#Introduction|Position2D]], which is [x,y] of terrain segment (integer, basically pixel coordinates in heightmap) | ||
|x1= < | |x1= <sqf>private _segmentOffset = diag_getTerrainSegmentOffset getPosWorld player;</sqf> | ||
|seealso= [[diag_getTerrainHeight]] [[diag_getTerrainGrid]] | |seealso= [[diag_getTerrainHeight]] [[diag_getTerrainGrid]] | ||
}} | }} |
Revision as of 17:23, 5 May 2022
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 PositionWorld
- Parameters:
- PositionWorld: Array - World coordinates in format Position2D or Position3D
- Return Value:
- Array: In format Position2D, which is [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