Portal SAMP
[Ajuda] Animação em Ator - Versão de Impressão

+- Portal SAMP (https://portalsamp.com)
+-- Fórum: SA-MP (https://portalsamp.com/forumdisplay.php?fid=5)
+--- Fórum: Área de suporte (https://portalsamp.com/forumdisplay.php?fid=6)
+--- Tópico: [Ajuda] Animação em Ator (/showthread.php?tid=3449)



Animação em Ator - yoda - 20/03/2023

Pessoal, não importa oque eu faço, os atores não fazem as animações

new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
new actorid = CreateActor(GetPlayerSkin(playerid), x, y, z, 0.0);
[font=Söhne, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"]ApplyAnimation(actorid, "PED", "DEAD_GUY", 4.1, 1, 1, 1, 1, 0, 0);
[/font]

nenhuma animação funciona, alguem pode me dar uma luz?


RE: Animação em Ator - domingues93 - 20/03/2023

(20/03/2023 03:49)yoda Escreveu: Pessoal, não importa oque eu faço, os atores não fazem as animações

new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
new actorid = CreateActor(GetPlayerSkin(playerid), x, y, z, 0.0);
[font=Söhne, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"]ApplyAnimation(actorid, "PED", "DEAD_GUY", 4.1, 1, 1, 1, 1, 0, 0);
[/font]

nenhuma animação funciona, alguem pode me dar uma luz?

Você precisa usar a função ApplyActorAnimation


RE: Animação em Ator - yoda - 21/03/2023

new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);

new actorid = CreateActor(0, x, y, z, 0.0); // cria o ator
SetActorInvulnerable(actorid, true); // torna o ator invulnerável
ApplyAnimation(actorid, "PED", "FALL_FALL", 4.1, 0, 0, 1, 1, 0, 0); // aplica a animação de morte

estou usando assim mas o ator nao faz animação de jeito nenhum


RE: Animação em Ator - xbruno1000x - 21/03/2023

Segundo outros usuários do fórum, isso foi o que resolveu:
https://pastebin.com/76vhaiuT
(Deve ser adaptado ao seu script)