mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-28 15:57:59 +03:00
Update animation script
This commit is contained in:
parent
3d2e4f5242
commit
c8d34bfccb
10 changed files with 60 additions and 65 deletions
|
@ -1,7 +1,7 @@
|
|||
-- TR5Main engine settings file
|
||||
-- TombEngine settings file
|
||||
-- Created by MontyTRC
|
||||
-- Place in this LUA script all the engine settings for your game
|
||||
-- WARNING: bad values could make your game unplayable, please follow with attention the reference guide
|
||||
-- Place all the engine settings for your game in this LUA script.
|
||||
-- WARNING: Bad values could make your game unplayable; please follow reference guide attentively.
|
||||
|
||||
local settings = Settings.new();
|
||||
settings.screenWidth = 1920;
|
||||
|
@ -16,12 +16,11 @@ settings.errorMode = ErrorMode.WARN;
|
|||
SetSettings(settings);
|
||||
|
||||
local anims = Animations.new();
|
||||
anims.crawlExtended = true;
|
||||
anims.crouchRoll = true;
|
||||
anims.crawlspaceSwandive = true;
|
||||
anims.monkeyTurn180 = true;
|
||||
anims.monkeyAutoJump = false;
|
||||
anims.oscillateHang = true;
|
||||
anims.pose = false;
|
||||
anims.overhang = true;
|
||||
anims.hasSlideExtended = true;
|
||||
anims.hasCrawlExtended = true;
|
||||
anims.hasCrouchRoll = true;
|
||||
anims.hasCrawlspaceSwandive = true;
|
||||
anims.hasOverhangClimb = true;
|
||||
anims.hasPose = false;
|
||||
anims.hasMonkeyAutoJump = false;
|
||||
SetAnimations(anims);
|
Loading…
Add table
Add a link
Reference in a new issue