config.gd.example is now much better :)

This commit is contained in:
JeremyStar™ 2023-07-28 23:17:19 +02:00
parent c16aa097f8
commit c72383cc50

View file

@ -6,69 +6,36 @@
# Available in the public domain. # Available in the public domain.
extends Node extends Node
# Hello fellow dev! This is the CORE configuration file. # Hello there, fellow developer! This is the CORE configuration
# This file can be used to customize CORE to your liking. # file and is responsible for changing CORE's behaviour. If you
# You do not need to modify any CORE script as some things # want something added or have any questions, just open a issue
# might break (everything depends on each other). # here: https://git.staropensource.de/staropensource/core/issues/new
# Thank you for using CORE :) #
# 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 # CORE
## core_startscript ## Enter the path to your startup script
## Type: String
## Default value: "res://"
## Enter the path to the game/application
## start script. It will be responsible
## for loading your game or application.
var core_startscript = "res://" var core_startscript = "res://"
# wmgr (Window Manager) # Window manager
## wmgr_size_x ## Initial window size (x coordinate)
## Type: int
## Default value: 960
## Defines the default window size (x axis)
var wmgr_size_x = 960 var wmgr_size_x = 960
## wmgr_size_y ## Initial window size (y coordinate)
## Type: Int
## Default value: 540
## Defines the default window size (y axis)
var wmgr_size_y = 540 var wmgr_size_y = 540
## wmgr_title ## Initial window title
## Type: String
## Default value: "Application/Game using CORE"
var wmgr_title = "Application/Game using CORE" var wmgr_title = "Application/Game using CORE"
## wmgr_mode ## Initial window mode
## Type:int
## Default value: 0
## ID | Mode
## 0 | Windowed
## 1 | Minimized
## 2 | Maximized
## 3 | Fullscreen
## 4 | Exclusive fullscreen
var wmgr_mode = 0 var wmgr_mode = 0
# Splash # Splash screen
## splash_enabled ## Enable/disable the splash screen at startup, can be manually enabled even if false
## Type: bool
## Default value: false
## Enables or disables the splash screen at startup.
## Can be manually enabled with core.splash.display()
var splash_enabled = true var splash_enabled = true
## splash_image ## The splash screen image
## Type: String
## Default value: "res://CORE/soscore.png"
## The path to your image that will be displayed
## in the center of the splash screen.
var splash_image = "res://CORE/soscore.png" var splash_image = "res://CORE/soscore.png"
## splash_image_size ## Image size, applies to both x and y coordinates
## Type: float
## Default value: 256
## The size of your splash image. Used for both x and y.
var splash_image_size = 256 var splash_image_size = 256
## splash_color ## Background color
## Type: String
## Default value: "000000"
## The splash screen's background color. Do not include
## a "#" at the start.
var splash_color = "000000" var splash_color = "000000"