OsGetPrimitiveParams
From OpenSimulator
(Difference between revisions)
| Line 3: | Line 3: | ||
| | | | ||
function_syntax = <source lang="lsl"> | function_syntax = <source lang="lsl"> | ||
| − | osGetPrimitiveParams(key | + | osGetPrimitiveParams(key prim_uuid, list rules); |
</source> | </source> | ||
| | | | ||
| − | ossl_example = | + | ossl_example = See the example of [[OsSetPrimitiveParams]]. |
| | | | ||
| − | additional_info = | + | additional_info = * Gets the parameters for the prim specified by '''prim_uuid''' according to '''rules'''. |
| + | * This function has the same behave as llGetPrimitiveParams except you can specify target prim anywhere in the scene. | ||
| + | * For general information about '''rules''', see [http://wiki.secondlife.com/wiki/LlGetPrimitiveParams llGetPrimitiveParams in SecondLife Wiki]. | ||
| + | * Check [[LSL_Status/Functions|llGetPrimitiveParams implementation status]] to see the differences from llGetPrimitiveParams. | ||
| + | * If there is no '''prim_uuid''' prim in the scene, or the owner of the target prim is differ from the owner of the scripted prim, it will fail without error. | ||
| + | * NOTE: As of OpenSimulator 0.7.1.1, this function doesn't work, results in script error([http://opensimulator.org/mantis/view.php?id=5560 #5560]). | ||
| | | | ||
}} | }} | ||
Revision as of 21:37, 24 June 2011
osGetPrimitiveParams(key prim_uuid, list rules); | |
| No descriptions provided | |
| Threat Level | High |
| Permissions | No permissions specified |
| Extra Delay | No function delay specified |
| Example(s) | |
| See the example of OsSetPrimitiveParams. | |
| Notes | |
* Gets the parameters for the prim specified by prim_uuid according to rules.
| |