OsGetRegionSize
From OpenSimulator
(Difference between revisions)
(Small changes) |
m (Whoops) |
||
Line 5: | Line 5: | ||
|function_syntax=vector osGetRegionSize() | |function_syntax=vector osGetRegionSize() | ||
|description=Returns the size of the region in meters. | |description=Returns the size of the region in meters. | ||
− | Usually this function returns: <256.000000, 256.000000, 0.000000> | + | Usually this function returns: <256.000000, 256.000000, 0.000000><br> |
However, when called in a var/mega region it returns the size of the entire simulator. | However, when called in a var/mega region it returns the size of the entire simulator. | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
// | // | ||
// osGetRegionSize Script Exemple | // osGetRegionSize Script Exemple | ||
− | // Author: | + | // Author: djphil |
// | // | ||
Latest revision as of 17:58, 5 December 2020
vector osGetRegionSize()
| |
Returns the size of the region in meters.
Usually this function returns: <256.000000, 256.000000, 0.000000> | |
Threat Level | This function does not do a threat level check |
Permissions | Use of this function is always allowed by default |
Extra Delay | 0 seconds |
Example(s) | |
// // osGetRegionSize Script Exemple // Author: djphil // default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch to see osGetRegionSize usage."); } touch_start(integer number) { llSay(PUBLIC_CHANNEL, "The region size is " + (string)osGetRegionSize()); } } | |
Notes | |
This function was added in 0.8-post-fixes |