OsGetRegionSize
From OpenSimulator
(Difference between revisions)
m (Orenh moved page Feature Proposals/OsGetRegionSize to OsGetRegionSize) |
|||
Line 14: | Line 14: | ||
Usually this function returns 256x256. | Usually this function returns 256x256. | ||
− | However, when called in a | + | However, when called in a var/mega region it returns the size of the entire simulator. |
| | | | ||
}} | }} |
Revision as of 15:42, 7 March 2014
vector osGetRegionSize()
| |
Returns the size of the region in meters.
Usually this function returns 256x256. However, when called in a var/mega region it returns the size of the entire simulator. | |
Threat Level | None |
Permissions | No permissions specified |
Extra Delay | No function delay specified |
Example(s) | |
default { touch_start(integer t) { llSay(0, "Region size: " + (string)osGetRegionSize()); } } |