mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-29 00:07:58 +03:00
15 lines
626 B
Lua
15 lines
626 B
Lua
-- 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
|
|
|
|
Gameflow.settings.screenWidth = 1920;
|
|
Gameflow.settings.screenHeight = 1080;
|
|
Gameflow.settings.windowTitle = "TR5Main Alpha";
|
|
Gameflow.settings.enableDynamicShadows = true;
|
|
Gameflow.settings.enableWaterCaustics = true;
|
|
Gameflow.settings.windowed = true;
|
|
Gameflow.settings.drawingDistance = 102400;
|
|
Gameflow.settings.showRendererSteps = false;
|
|
Gameflow.settings.showDebugInfo = true;
|
|
|