Jump to content

Gesture on infinite loop


BlakeStrong9786
 Share

You are about to reply to a thread that has been inactive for 1305 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

Animations get set to "loop" or "not-loop" when they are initially uploaded, and then they're locked in forever. If you need a non-looping animation to run repeatedly, you need to use a script. Something like
 

default
{
    state_entry()
    {
        llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION);
        llSetTimerEvent(X);  // change "X" to the animation duration in seconds, plus a little extra
    }

    timer()
    {
        llStartAnimation("animation_name");
    }
}

on any avatar or HUD attachment. You'll also need to put a copy of the animation into that object's contents.

Edited by Quarrel Kukulcan
Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 1305 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...