07297fce37
* Wrote Linux package files * Moved the package distribution content * Started rewriting `Install.sh` in Python * Added the `ttkbootstrap` module * Applied a dark theme to the installer * More dependency installation changes * More installer changes * Overhauled all distribution changes * Fixed the `Setup.py` script The `Setup.py` script tried to build `Dependencies.py`, which was removed. It now builds `Install.py` instead. * Moved from `subprocess.run()` to `os.system()` The installer now uses the **deprecated** `os.system` function. In the feature `Install.py` will use `subprocess.run()` again, however, `os.system()` has better infrastructure to work. * Fixed a grammatical error in `Install.py` A comment referred to *the* Discord server as Discord, as a whole. * Fixed two typos in `Install.py` caused by my editor * Fixed major bugs in the `Install.py` script * Fixed a possible issue that might occur in `Install.py` * (Linux) File dialog glob pattern fix (#403) * ocean: change to use indexed draw; fixed gradient tiling; * raytracing now uses configurable sampler + refactors * Underwater post process (#405) * added underwater post process * improvements * update * update * border between underwater and air is better faded * fixes: volumetric cloud blend mode in planar reflection; ocean receive shadow; * underwater caustics * Fixed a major `.gitignore` issue * Debug changes Co-authored-by: Megumumpkin <megumumpkin@protonmail.ch> Co-authored-by: Turánszki János <turanszkij@users.noreply.github.com>
43 lines
1.7 KiB
Markdown
43 lines
1.7 KiB
Markdown
# Settings
|
|
|
|
A brief explanation of Wicked Engine's settings.
|
|
|
|
## About
|
|
|
|
This folder contains settings files optionally copied over to your Wicked
|
|
Engine installation directory.
|
|
|
|
### Configuration
|
|
|
|
The `config.ini` file is responsible for a few options. All changes in the
|
|
`config.ini` file must be done with [integers](https://en.wikipedia.org/wiki/Integer),
|
|
I.E whole numbers. A value of **0** is equal to **false** and a value of **1**
|
|
is equal to **true**. This means the numbers are stand-ins for the
|
|
[boolean](https://en.wikipedia.org/wiki/Boolean_data_type) data type.
|
|
|
|
#### Variables
|
|
There's a lot of variables to change around to customise your `config.ini` file.
|
|
Here's their documentation:
|
|
|
|
- The `enabled` variable toggles whether to enable or ignore the `config.ini`.
|
|
- The `x` and `y`
|
|
variables, which influence where your window appears when you open Wicked
|
|
Engine.
|
|
- The `w` and `h` variables control the width and height of your Wicked Engine window.
|
|
- The `fullscreen`variable controls whether your window goes full-screen when opening Wicked Engine.
|
|
- The `borderless` variable determines if your window should have borders or not.
|
|
- The `allow_hdr` variable toggles whether HDR should be used by Wicked Engine.
|
|
|
|
### Start-up
|
|
|
|
Wicked Engine automatically loads the `startup.lua` script if found. This script
|
|
is just like any other Wicked Engine Lua script. Rather than having set variables
|
|
for you to control, the script simply allows you do whatever you want. Have fun!
|
|
|
|
#### Profiling
|
|
By default the `startup.lua` script contains `SetProfilerEnabled(false)`, which
|
|
sets the profiler to **false**. In order to enable the profiler on start-up,
|
|
simply change `SetProfilerEnabled(false)` to `SetProfilerEnabled(true)`!
|
|
|
|
|