// Basic Animation / Attachment 1.0
// Catherine Omega Heavy Industries
string gAnimName = "express_afraid"; // what animation to play?
default
{
state_entry()
{
llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION); // ask the owner for permission to trigger animations
//if( llGetPermissions() & PERMISSION_TRIGGER_ANIMATION ) { llStartAnimation(gAnimName ); }
//llStartAnimation(gAnimName); // automatically trigger animation.
}
touch_start(integer total_number) {
llStartAnimation( gAnimName );
llSay(0, "Animation: " + gAnimName);
}
}
Subscribe to:
Post Comments (Atom)
Azure OpenAI Architecture Patterns & Deployment Patterns
Sharing some useful links that will help customers architect Azure OpenAI solution using the best practices: (1) Azure OpenAI Landing Zone r...
-
Setting up a MPI cluster on Ubuntu involves the following steps: 1. Install OpenMPI on all machines. $sudo apt-get install libopenmpi-de...
-
float p_size = 0.1; default { state_entry() { llSay(0, "Hello, Avatar!"); llSetPrimitiveParams( [ PRIM_...
-
Very Useful Link: http://people.cc.ku.edu/~grobe/intro-to-LSL/index.html#particle Using the Linden Script Language This page is a short...
No comments:
Post a Comment