worldSize: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= Comments" to "|Comments=")
m (Text replacement - "|= Game version" to "|Game version=")
Line 4: Line 4:
| arma3 |= Game name
| arma3 |= Game name


|1.48|= Game version
|1.48|Game version=
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 13:57, 2 September 2019

Hover & click on the images for description

Description

Description:
Returns the engine calculated size of the current world (do not confuse with BIS_fnc_mapSize, which could return the same value, but is just a simple look up in config).
Groups:
Uncategorised

Syntax

Syntax:
worldSize
Return Value:
Number

Examples

Example 1:
_size = worldSize;

Additional Information

See also:
worldNamemissionNamebriefingNameserverNameBIS_fnc_mapSize

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

Notes

Bottom Section


Posted on September 1, 2019 - 12:01 (UTC)
R3vo
In order to cover the map by for example a round marker, one can get the dimensions like this:
private _a = worldSize / 2; private _center = [_a, _a, 0]; private _size = sqrt 2 * _a;