Allow custom modules per default now
This commit is contained in:
parent
708913ae7e
commit
2909075ed2
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ Controls CORE's functionality. Renders GUI-related modules useless when set to `
|
||||||
### *bool* <u>development</u> = *false*
|
### *bool* <u>development</u> = *false*
|
||||||
Puts the framework into development mode. \
|
Puts the framework into development mode. \
|
||||||
Unlocks experimental features.
|
Unlocks experimental features.
|
||||||
### *bool* <u>custom_modules</u> = *false*
|
### *bool* <u>custom_modules</u> = *true*
|
||||||
Allows or disallows custom modules.
|
Allows or disallows custom modules.
|
||||||
### *bool* <u>automatic_shutdown</u> = *true*
|
### *bool* <u>automatic_shutdown</u> = *true*
|
||||||
If `quit_safely` (and by extension `Core.cleanup`) should be called when pressing the X.
|
If `quit_safely` (and by extension `Core.cleanup`) should be called when pressing the X.
|
||||||
|
|
|
@ -67,7 +67,7 @@ func _init() -> void:
|
||||||
# Global
|
# Global
|
||||||
headless = false
|
headless = false
|
||||||
development = false
|
development = false
|
||||||
custom_modules = false
|
custom_modules = true
|
||||||
automatic_shutdown = true
|
automatic_shutdown = true
|
||||||
hide_window_on_shutdown = true
|
hide_window_on_shutdown = true
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue