OsGetRegionSize
From OpenSimulator
(Difference between revisions)
(Small changes) |
|||
| Line 4: | Line 4: | ||
|delay=0 | |delay=0 | ||
|function_syntax=vector osGetRegionSize() | |function_syntax=vector osGetRegionSize() | ||
| + | |description=Returns the size of the region in meters. | ||
| + | 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. | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
| + | // | ||
| + | // osGetRegionSize Script Exemple | ||
| + | // Author: Manni | ||
| + | // | ||
| + | |||
default | default | ||
{ | { | ||
| − | + | state_entry() | |
{ | { | ||
| − | llSay( | + | llSay(PUBLIC_CHANNEL, "Touch to see osGetRegionSize usage."); |
| + | } | ||
| + | |||
| + | touch_start(integer number) | ||
| + | { | ||
| + | llSay(PUBLIC_CHANNEL, "The region size is " + (string)osGetRegionSize()); | ||
} | } | ||
} | } | ||
</source> | </source> | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
|additional_info=This function was added in 0.8-post-fixes | |additional_info=This function was added in 0.8-post-fixes | ||
}} | }} | ||
Revision as of 18:49, 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: Manni // 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 | |