Address Issue 1571: Newer OSSL functions not recognized by Script Editor

This commit is contained in:
Inusaito Sayori
2014-07-08 19:15:19 -04:00
parent b4b12732cb
commit b2e8a31d68
2 changed files with 30 additions and 0 deletions

View File

@@ -287,6 +287,16 @@
<map/> <map/>
<key>osRegexIsMatch</key> <key>osRegexIsMatch</key>
<map/> <map/>
<key>osForceCreateLink</key>
<map/>
<key>osForceBreakLink</key>
<map/>
<key>osForceBreakAllLinks</key>
<map/>
<key>osGetRegionSize</key>
<map/>
<key>osGetPhysicsEngineType</key>
<map/>
<!-- OSSL Functions Aurora-Sim Unique --> <!-- OSSL Functions Aurora-Sim Unique -->
<key>osReturnObject</key> <key>osReturnObject</key>

View File

@@ -2722,6 +2722,26 @@ string input = string to test for match
string pattern = string to use as pattern string pattern = string to use as pattern
returns boolean TRUE/FALSE. returns boolean TRUE/FALSE.
</string> </string>
<string name="LSLTipText_osForceCreateLink">
osForceCreateLink(key target, integer parent)
Link the script's object with target, without requiring link permissions.
</string>
<string name="LSLTipText_osForceBreakLink">
osForceBreakLink(integer link)
De-links the prim with the given link number in a linked set, without requiring link permissions.
</string>
<string name="LSLTipText_osForceBreakAllLinks">
osForceBreakAllLinks()
De-links all prims in a link set, without requiring link permissions.
</string>
<string name="LSLTipText_osGetRegionSize">
vector osGetRegionSize()
Returns the size of the region in metres.
</string>
<string name="LSLTipText_osGetPhysicsEngineType">
string osGetPhysicsEngineType()
Returns a string containing the name of the Physics Engine.
</string>
<string name="LSLTipText_cmSetWindlightScene"> <string name="LSLTipText_cmSetWindlightScene">
cmSetWindlightScene(list rules) cmSetWindlightScene(list rules)