2022-03-04 15:51:53 +11:00
|
|
|
-- TombEngine settings file
|
|
|
|
-- WARNING: Bad values could make your game unplayable; please follow reference guide attentively.
|
2021-12-01 15:31:39 +03:00
|
|
|
|
2022-02-13 20:38:55 +00:00
|
|
|
local Flow = TEN.Flow
|
|
|
|
|
2022-08-04 05:23:56 +03:00
|
|
|
local settings = Flow.Settings.new()
|
|
|
|
settings.errorMode = Flow.ErrorMode.WARN
|
|
|
|
Flow.SetSettings(settings)
|
2021-12-01 15:31:39 +03:00
|
|
|
|
2022-08-04 05:23:56 +03:00
|
|
|
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)
|