From cd6f275d4e23006c2c31525fa7453cdd95245d25 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 25 Jul 2021 22:20:14 -0500 Subject: [PATCH] Add shared and special action anim types --- scripts/shared/const.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/shared/const.js b/scripts/shared/const.js index c7640974..2f69b486 100644 --- a/scripts/shared/const.js +++ b/scripts/shared/const.js @@ -55,4 +55,6 @@ const VRR_BIZLABEL_INFO_REPAIR = 5; const VRR_ANIMTYPE_NONE = 0; const VRR_ANIMTYPE_ADD = 1; -const VRR_ANIMTYPE_BLEND = 2; \ No newline at end of file +const VRR_ANIMTYPE_BLEND = 2; +const VRR_ANIMTYPE_SHARED = 3; // Forces this animation to play in sync with another ped's mirrored anim (handshake, kiss, gang signs, etc) +const VRR_ANIMTYPE_SPECIALACTION = 4; // This animtype uses a special action (only in SA) \ No newline at end of file