OsTeleportObject
From OpenSimulator
(Difference between revisions)
m (Added note stating which version of OpenSim introduced this function) |
|||
Line 68: | Line 68: | ||
* the object can not be selected at tp time | * the object can not be selected at tp time | ||
− | | | + | |additional_info=This function was added in 0.9.0-post-fixes |
}} | }} |
Revision as of 09:42, 15 October 2018
integer osTeleportObject(key objectUUID, vector targetPos, rotation rot, int flags)
| |
...
Arguments:
Flags:
| |
Threat Level | Severe |
Permissions | ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER |
Extra Delay | 0 seconds |
Example(s) | |
// Example of osTeleportObject default { state_entry() { llSay(0, "Script running"); } touch_start(integer num) { // target position in region local coords vector target =<873.911926, 879.844910, 21.332354>; rotation rot =<0,0,0.707,.707>; osObjectTeleport(llGetKey(),target,rot,1); } } | |
Notes | |
This function was added in 0.9.0-post-fixes |