Fix syntax in config.gd.example and fix mkdevprj

This commit is contained in:
JeremyStar™ 2023-08-25 16:21:33 +02:00
parent 7447a02b43
commit b6a97946f0
3 changed files with 27 additions and 2 deletions

View file

@ -0,0 +1,24 @@
extends Node
var core_initscript: String = "res://init.gd"
var preprocessor_enabled: bool = true
var preprocessor_diagnostic: bool = false
var logger_enabled: bool = true
var logger_diagnostic: bool = false
var corelog_enabled: bool = true
var debugdisplay_enabled: bool = false
var debugdisplay_fps: bool = true
var debugdisplay_delta: bool = true
var debugdisplay_rendertime: bool = true
var debugdisplay_memory: bool = true
var resourcemanager_load_invalid_file_as_null: bool = false
var splash_enabled: bool = false
var splash_image: String = "res://CORE/soscore.png"
var splash_image_size: int = 256
var splash_color: String = "000000"

View file

@ -19,7 +19,7 @@ extends Node
# Thank you for using the CORE Framework! # Thank you for using the CORE Framework!
# - The StarOpenSource Project & Contributers # - The StarOpenSource Project & Contributers
var core_initscript: String ? "res://init.gd" var core_initscript: String = "res://init.gd"
var preprocessor_enabled: bool = true var preprocessor_enabled: bool = true
var preprocessor_diagnostic: bool = false var preprocessor_diagnostic: bool = false

View file

@ -115,7 +115,7 @@ extends Node
# Thank you for using the CORE Framework! # Thank you for using the CORE Framework!
# - The StarOpenSource Project & Contributers # - The StarOpenSource Project & Contributers
var core_initscript: String ? "res://init.gd" var core_initscript: String = "res://init.gd"
var preprocessor_enabled: bool = true var preprocessor_enabled: bool = true
var preprocessor_diagnostic: bool = false var preprocessor_diagnostic: bool = false
@ -140,3 +140,4 @@ var splash_color: String = "000000"
# EOF <- Yes, this is the end of the example configuration! Pretty short, isn't it? # EOF <- Yes, this is the end of the example configuration! Pretty short, isn't it?
``` ```