OsGetRegionSize
From OpenSimulator
(Difference between revisions)
m (Orenh moved page Feature Proposals/OsGetRegionSize to OsGetRegionSize) |
m (Whoops) |
||
(6 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{osslfunc | {{osslfunc | ||
− | |threat_level= | + | |threat_level=ignored |
+ | |permissions=true | ||
+ | |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: djphil | ||
+ | // | ||
+ | |||
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 |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
}} | }} |
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 |