16.06.2011, 19:18
I have uploaded another version (v 1.1). Due to popular request of MapAndreas, I have not added it but have checked for animations detecting a player is not on the ground. The new addition seems to be working properly.
If you noticed I missed a animation that detects if a player is on the ground or not, you can add them yourself to lines 74 to 84. A example of adding a new animation is below:
Original
New
If you noticed I missed a animation that detects if a player is on the ground or not, you can add them yourself to lines 74 to 84. A example of adding a new animation is below:
Original
pawn Код:
stock
jump_anims[ ][ ] =
{
"JUMP_glide",
"JUMP_land",
"JUMP_launch",
"JUMP_launch_R",
"FALL_FALL"
};
pawn Код:
stock
jump_anims[ ][ ] =
{
"JUMP_glide",
"JUMP_land",
"JUMP_launch",
"JUMP_launch_R",
"FALL_FALL",
"MyNewAnimation"
};