2018-09-03 21:08:40 +02:00
|
|
|
-- 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
|
2018-09-02 09:29:36 +02:00
|
|
|
|
2018-12-13 23:07:11 +01:00
|
|
|
Gameflow.settings.screenWidth = 1920;
|
|
|
|
Gameflow.settings.screenHeight = 1080;
|
2018-09-22 23:54:36 +02:00
|
|
|
Gameflow.settings.windowTitle = "TR5Main Alpha";
|
|
|
|
Gameflow.settings.enableDynamicShadows = true;
|
|
|
|
Gameflow.settings.enableWaterCaustics = true;
|
2018-09-03 21:08:40 +02:00
|
|
|
Gameflow.settings.windowed = true;
|
2018-09-22 23:54:36 +02:00
|
|
|
Gameflow.settings.drawingDistance = 102400;
|
2018-10-30 18:49:16 +01:00
|
|
|
Gameflow.settings.showRendererSteps = false;
|
|
|
|
Gameflow.settings.showDebugInfo = true;
|
|
|
|
|