2023-08-25 15:11:17 +02:00
|
|
|
##############################
|
|
|
|
# THE CORE FRAMEWORK #
|
|
|
|
# EXAMPLE CONFIGURATION FILE #
|
|
|
|
# #
|
|
|
|
# THIS DOCUMENT IS PUBLICLY #
|
|
|
|
# AVAILABLE UNDER THE PUBLIC #
|
|
|
|
# DOMAIN AND IS NOT LICENSED #
|
|
|
|
##############################
|
2023-03-18 16:34:12 +01:00
|
|
|
extends Node
|
|
|
|
|
2023-08-25 15:11:17 +02:00
|
|
|
# Hello there, fellow developer!
|
|
|
|
# This is a example configuration file
|
|
|
|
# for the CORE Framework (source 0).
|
|
|
|
#
|
|
|
|
# Most settings in this config should be
|
|
|
|
# self explanitory. If not, visit the documentation:
|
|
|
|
# https://core.staropensource.de/references/Configuration_File/
|
2023-07-28 23:17:19 +02:00
|
|
|
#
|
2023-08-25 15:11:17 +02:00
|
|
|
# Thank you for using the CORE Framework!
|
|
|
|
# - The StarOpenSource Project & Contributers
|
|
|
|
|
2023-08-25 16:21:33 +02:00
|
|
|
var core_initscript: String = "res://init.gd"
|
2023-08-25 15:11:17 +02:00
|
|
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
# EOF <- Yes, this is the end of the example configuration! Pretty short, isn't it?
|