CORE/config.gd.example

41 lines
1.3 KiB
Text

# core.gd.example
# CORE example configuration file
#
# This file is part of StarOpenSource CORE (SOSCORE)
# Made by the StarOpenSource Project and Contributers
# Available in the public domain.
extends Node
# Hello there, fellow developer! This is the CORE configuration
# file and is responsible for changing CORE's behaviour. If you
# want something added or have any questions, just open a issue
# here: https://git.staropensource.de/staropensource/core/issues/new
#
# If you want a reference, look into the documentation here:
# https://core.staropensource.de/references/config.gd/
#
# Bye the way, thank you for developing your app/game with CORE :)
# CORE
## Enter the path to your startup script
var core_startscript = "res://"
# Window manager
## Initial window size (x coordinate)
var wmgr_size_x = 960
## Initial window size (y coordinate)
var wmgr_size_y = 540
## Initial window title
var wmgr_title = "Application/Game using CORE"
## Initial window mode
var wmgr_mode = 0
# Splash screen
## Enable/disable the splash screen at startup, can be manually enabled even if false
var splash_enabled = true
## The splash screen image
var splash_image = "res://CORE/soscore.png"
## Image size, applies to both x and y coordinates
var splash_image_size = 256
## Background color
var splash_color = "000000"