OsGetRegionSize
From OpenSimulator
(Redirected from Feature Proposals/OsGetRegionSize)
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 | |