OsAvatarPlayAnimation

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
osAvatarPlayAnimation(key avatar, string animation)
+
'''osAvatarPlayAnimation'''(key avatar, string animation)
  
 
This function causes an animation to be played on the specified avatar.  The variable ''animation'' can be either the name of an animation within the task inventory, or it can be the UUID of an animation.  Because osAvatarPlayAnimation does not perform any security checks or request animation permissions from the targeted avatar, it has a threat level of High.
 
This function causes an animation to be played on the specified avatar.  The variable ''animation'' can be either the name of an animation within the task inventory, or it can be the UUID of an animation.  Because osAvatarPlayAnimation does not perform any security checks or request animation permissions from the targeted avatar, it has a threat level of High.
  
//Example Usage:
+
<code><pre>//Example Usage:
 
default {
 
default {
 
     touch_start(integer num) {
 
     touch_start(integer num) {
Line 9: Line 9:
 
         osAvatarPlayAnimation(llDetectedKey(0), anim);
 
         osAvatarPlayAnimation(llDetectedKey(0), anim);
 
     }
 
     }
}
+
}</pre></code>
  
 
--[[User:ZauberExonar|ZauberExonar]] 07:55, 5 February 2010 (UTC)
 
--[[User:ZauberExonar|ZauberExonar]] 07:55, 5 February 2010 (UTC)

Revision as of 00:57, 5 February 2010

osAvatarPlayAnimation(key avatar, string animation)

This function causes an animation to be played on the specified avatar. The variable animation can be either the name of an animation within the task inventory, or it can be the UUID of an animation. Because osAvatarPlayAnimation does not perform any security checks or request animation permissions from the targeted avatar, it has a threat level of High.

//Example Usage:
default {
    touch_start(integer num) {
        string anim = llGetInventoryName(INVENTORY_ANIMATION, 0);
        osAvatarPlayAnimation(llDetectedKey(0), anim);
    }
}

--ZauberExonar 07:55, 5 February 2010 (UTC)

Personal tools
General
About This Wiki