diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2016-10-24 12:12:19 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2016-10-24 12:12:19 -0400 |
| commit | 74c7a160da34897ebdf18aaff02b8c9b65809949 (patch) | |
| tree | db2a084d02f4acc3d7c99ec20e573101e448aef6 /gamemode/shared/animations/move_evade.lua | |
| parent | d7f44fc24da959658b597e64d842661aa41f6515 (diff) | |
| download | artery-74c7a160da34897ebdf18aaff02b8c9b65809949.tar.gz artery-74c7a160da34897ebdf18aaff02b8c9b65809949.tar.bz2 artery-74c7a160da34897ebdf18aaff02b8c9b65809949.zip | |
Various other updates and bugfixes
Diffstat (limited to 'gamemode/shared/animations/move_evade.lua')
| -rw-r--r-- | gamemode/shared/animations/move_evade.lua | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/gamemode/shared/animations/move_evade.lua b/gamemode/shared/animations/move_evade.lua new file mode 100644 index 0000000..a5595aa --- /dev/null +++ b/gamemode/shared/animations/move_evade.lua @@ -0,0 +1,75 @@ +RegisterLuaAnimation('evade_left', { + FrameData = { + { + BoneInfo = { + ['ValveBiped.Bip01_L_Calf'] = { + }, + ['ValveBiped.Bip01_L_Thigh'] = { + }, + ['ValveBiped.Bip01_R_Thigh'] = { + }, + ['ValveBiped.Bip01_Pelvis'] = { + } + }, + FrameRate = 1 + }, + { + BoneInfo = { + ['ValveBiped.Bip01_L_Calf'] = { + RU = -44.9346, + RR = -4.9288, + RF = 5.1193 + }, + ['ValveBiped.Bip01_L_Thigh'] = { + RU = 49.7508, + RR = 11.8895, + RF = 74.14 + }, + ['ValveBiped.Bip01_R_Thigh'] = { + RU = 6.3191, + RR = 12.8315, + RF = -4.8611 + }, + ['ValveBiped.Bip01_Pelvis'] = { + } + }, + FrameRate = 4 + }, + { + BoneInfo = { + ['ValveBiped.Bip01_L_Calf'] = { + RU = -44.9346, + RR = -4.9288, + RF = 5.1193 + }, + ['ValveBiped.Bip01_L_Thigh'] = { + RU = 49.7508, + RR = 11.8895, + RF = 74.14 + }, + ['ValveBiped.Bip01_Pelvis'] = { + }, + ['ValveBiped.Bip01_R_Thigh'] = { + RU = 6.3191, + RR = 12.8315, + RF = -4.8611 + } + }, + FrameRate = 4 + }, + { + BoneInfo = { + ['ValveBiped.Bip01_L_Calf'] = { + }, + ['ValveBiped.Bip01_L_Thigh'] = { + }, + ['ValveBiped.Bip01_Pelvis'] = { + }, + ['ValveBiped.Bip01_R_Thigh'] = { + } + }, + FrameRate = 2 + } + }, + Type = TYPE_STANCE +}) |
