TombEngine/Scripts/Settings.lua
2022-08-04 05:23:56 +03:00

19 lines
No EOL
530 B
Lua

-- TombEngine settings file
-- WARNING: Bad values could make your game unplayable; please follow reference guide attentively.
local Flow = TEN.Flow
local settings = Flow.Settings.new()
settings.errorMode = Flow.ErrorMode.WARN
Flow.SetSettings(settings)
local anims = Flow.Animations.new()
anims.crawlExtended = true
anims.crouchRoll = true
anims.crawlspaceSwandive = true
anims.monkeyAutoJump = false
anims.overhangClimb = false
anims.slideExtended = false
anims.sprintJump = false
anims.pose = false
Flow.SetAnimations(anims)