getTerrainGrid: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Some wiki formatting)
 
(31 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma3 |= Game name
|game1= arma3
|1.60|= Game version
|version1= 1.60
____________________________________________________________________________________________


| Returns the current terrain grid |= Description
|gr1= System
____________________________________________________________________________________________


| '''getTerrainGrid''' |= Syntax
|gr2= Environment


| [[Number]] |= Return value
|descr= A getter for [[setTerrainGrid]], returns the current terrain grid.
____________________________________________________________________________________________
 
|x1= <code>_terrainGrid = [[getTerrainGrid]];</code> |= Example 1


|x2= <code>[[if]] ([[getTerrainGrid]] < 50) [[then]]
|s1= [[getTerrainGrid]]
{
 
  [[hint]] "Grass is enabled";
|r1= [[Number]] - terrain grid value
};</code> |= Example 2


____________________________________________________________________________________________
|x1= <sqf>_terrainGrid = getTerrainGrid;</sqf>


| [[setTerrainGrid]], [[viewDistance]] |= See also
|x2= <sqf>
if (getTerrainGrid < 50) then
{
hint "Grass is enabled";
};
</sqf>


|seealso= [[setTerrainGrid]] [[viewDistance]] [[diag_getTerrainGrid]]
}}
}}

Latest revision as of 14:19, 12 March 2024

Hover & click on the images for description

Description

Description:
A getter for setTerrainGrid, returns the current terrain grid.
Groups:
SystemEnvironment

Syntax

Syntax:
getTerrainGrid
Return Value:
Number - terrain grid value

Examples

Example 1:
_terrainGrid = getTerrainGrid;
Example 2:
if (getTerrainGrid < 50) then { hint "Grass is enabled"; };

Additional Information

See also:
setTerrainGrid viewDistance 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