mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-28 15:57:59 +03:00
21 lines
No EOL
656 B
C++
21 lines
No EOL
656 B
C++
#include "framework.h"
|
|
#include "GameScriptAnimations.h"
|
|
|
|
/***
|
|
New custom animations which Lara can perform.
|
|
@pregameclass Animations
|
|
@pragma nostrip
|
|
*/
|
|
|
|
void GameScriptAnimations::Register(sol::state* lua)
|
|
{
|
|
lua->new_usertype<GameScriptAnimations>("Animations",
|
|
"crawlExtended", &GameScriptAnimations::CrawlExtended,
|
|
"crouchRoll", &GameScriptAnimations::CrouchRoll,
|
|
"crawlspaceSwandive", &GameScriptAnimations::CrawlspaceSwandive,
|
|
"monkeyTurn180", &GameScriptAnimations::MonkeyTurn180,
|
|
"monkeyAutoJump", &GameScriptAnimations::MonkeyAutoJump,
|
|
"oscillateHang", &GameScriptAnimations::OscillateHang,
|
|
"pose", &GameScriptAnimations::Pose
|
|
);
|
|
} |