##############################
#     THE CORE FRAMEWORK     #
# EXAMPLE CONFIGURATION FILE #
#                            #
# THIS DOCUMENT IS PUBLICLY  #
# AVAILABLE UNDER THE PUBLIC #
# DOMAIN AND IS NOT LICENSED #
##############################
extends Node

# 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/
#
# Thank you for using the CORE Framework!
# - The StarOpenSource Project & Contributers

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"

# EOF <- Yes, this is the end of the example configuration! Pretty short, isn't it?