mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-28 15:57:59 +03:00
Provide scripts file into repo
This commit is contained in:
parent
cf962439ee
commit
59263279fe
9 changed files with 2027 additions and 0 deletions
29
Scripts/Settings.lua
Normal file
29
Scripts/Settings.lua
Normal file
|
@ -0,0 +1,29 @@
|
|||
-- TR5Main engine 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
|
||||
|
||||
local settings = Settings.new();
|
||||
settings.screenWidth = 1920;
|
||||
settings.screenHeight = 1080;
|
||||
settings.enableDynamicShadows = true;
|
||||
settings.enableWaterCaustics = true;
|
||||
settings.windowed = true;
|
||||
settings.drawingDistance = 102400;
|
||||
settings.showRendererSteps = false;
|
||||
settings.showDebugInfo = true;
|
||||
settings.errorMode = ErrorMode.WARN;
|
||||
SetSettings(settings);
|
||||
|
||||
local anims = Animations.new();
|
||||
anims.crawlExtraExits = true;
|
||||
anims.crawlExtraVaults = true;
|
||||
anims.crawlFlexSubmerged = true;
|
||||
anims.crawlFlexWaterPullUp = true;
|
||||
anims.crawlStep = true;
|
||||
anims.crouchRoll = true;
|
||||
anims.monkeyRoll = true;
|
||||
anims.monkeyVault = true;
|
||||
anims.oscillateHanging = true;
|
||||
anims.swandiveRollRun = true;
|
||||
SetAnimations(anims);
|
Loading…
Add table
Add a link
Reference in a new issue