Jump to content

Gestos / Animaciones para el Avatar


AdriSil
 Share

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

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

Recommended Posts

Hola a todos ! ... Soy nueva en el foro y me llamo Adriana ...

Necesitaba hacer un script que anime al avatar mas que nada mostrando emociones .. como los emoticones ... contento, aburrido, triste, etc ....

Hice un script pero tengo algunas dificultades

1) No se me ejecutan todas las animaciones ... el clap (aplaudir) si me funciona pero otras como el me!, yo, not sure ... etc no se ejecutan

2) No me funcionan cuando el avatar esta sentado ... ¿existen este tipo de animaciones que funcionen con el avatar sentado? En general ¿hay alguna web de donde pueda bajar mas animaciones?

3) La función llRequestPermissions me hace primero una pregunta para habilitar los permisos ... ¿hay alguna función que los habilite de forma automática sin una pregunta previa?

Bueno, les paso el script y desde ya agradezco por anticipado en lo que me puedan ayudar ....

default
{
    touch_start(integer detected)
    {
        llRequestPermissions(llDetectedKey(0), PERMISSION_TRIGGER_ANIMATION);
    }
    run_time_permissions(integer perm)
    {
        if (perm & PERMISSION_TRIGGER_ANIMATION)
        {
            llStartAnimation("clap");
            llOwnerSay("animation will end in 5 seconds");
            llSetTimerEvent(5.0);
        }
    }
    timer()
    {
        llSetTimerEvent(0.0);
        llStopAnimation("clap");
    }
}

Un saludo para todos y ¡muchas gracias!

Adriana

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 1299 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...