mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-10 04:26:42 +03:00
Revert "Move scripting source files into new filder. Obviously, these won't work yet or even compile."
This reverts commit 8a31dbf644
.
This commit is contained in:
parent
69de6e4502
commit
6983e09a6a
24 changed files with 0 additions and 0 deletions
21
TR5Main/Scripting/GameScriptAnimations.cpp
Normal file
21
TR5Main/Scripting/GameScriptAnimations.cpp
Normal file
|
@ -0,0 +1,21 @@
|
|||
#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
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue