Update animation script

This commit is contained in:
Sezz 2022-03-04 15:51:53 +11:00
parent 3d2e4f5242
commit c8d34bfccb
10 changed files with 60 additions and 65 deletions

View file

@ -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);