2023-07-08 20:47:17 +02:00
|
|
|
# core.gd.example
|
|
|
|
# CORE example configuration file
|
2023-03-18 16:34:12 +01:00
|
|
|
#
|
|
|
|
# This file is part of StarOpenSource CORE (SOSCORE)
|
|
|
|
# Made by the StarOpenSource Project and Contributers
|
2023-07-08 20:47:17 +02:00
|
|
|
# Available in the public domain.
|
2023-03-18 16:34:12 +01:00
|
|
|
extends Node
|
|
|
|
|
2023-07-28 23:17:19 +02:00
|
|
|
# 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 :)
|
2023-03-18 16:34:12 +01:00
|
|
|
|
|
|
|
# CORE
|
2023-07-28 23:17:19 +02:00
|
|
|
## Enter the path to your startup script
|
2023-03-18 16:34:12 +01:00
|
|
|
var core_startscript = "res://"
|
|
|
|
|
2023-07-28 23:17:19 +02:00
|
|
|
# Window manager
|
|
|
|
## Initial window size (x coordinate)
|
2023-03-18 16:34:12 +01:00
|
|
|
var wmgr_size_x = 960
|
2023-07-28 23:17:19 +02:00
|
|
|
## Initial window size (y coordinate)
|
2023-03-18 16:34:12 +01:00
|
|
|
var wmgr_size_y = 540
|
2023-07-28 23:17:19 +02:00
|
|
|
## Initial window title
|
2023-03-18 16:34:12 +01:00
|
|
|
var wmgr_title = "Application/Game using CORE"
|
2023-07-28 23:17:19 +02:00
|
|
|
## Initial window mode
|
2023-03-18 16:34:12 +01:00
|
|
|
var wmgr_mode = 0
|
2023-06-29 17:22:13 +02:00
|
|
|
|
2023-07-28 23:17:19 +02:00
|
|
|
# Splash screen
|
|
|
|
## Enable/disable the splash screen at startup, can be manually enabled even if false
|
2023-06-29 17:22:13 +02:00
|
|
|
var splash_enabled = true
|
2023-07-28 23:17:19 +02:00
|
|
|
## The splash screen image
|
2023-06-29 17:22:13 +02:00
|
|
|
var splash_image = "res://CORE/soscore.png"
|
2023-07-28 23:17:19 +02:00
|
|
|
## Image size, applies to both x and y coordinates
|
2023-06-29 17:22:13 +02:00
|
|
|
var splash_image_size = 256
|
2023-07-28 23:17:19 +02:00
|
|
|
## Background color
|
2023-06-29 17:22:13 +02:00
|
|
|
var splash_color = "000000"
|
2023-08-07 14:49:12 +02:00
|
|
|
|
|
|
|
# Mother Of All Mods (CORE modloader)
|
|
|
|
## The directory where all modifications should be located at
|
|
|
|
## Please note that you should use a clean directory or you will
|
|
|
|
## encounter errors and strange behaviour.
|
|
|
|
var moam_loadpath = "user://mods/"
|
|
|
|
## The name of your project (use lowercasing and snake casing!)
|
|
|
|
## Used for the mod info file, as it is named like this: "<moam_wanted_name>.coremod"
|
|
|
|
var moam_wanted_name = "a_core_using_project"
|
|
|
|
## The wanted version, for example your game version
|
|
|
|
var moam_wanted_version = 1
|
|
|
|
## The wanted api version, if you have a modification api for your app/game
|
|
|
|
## If you don't have a mod api, comment it out or set it to moam_wanted_version
|
|
|
|
var moam_wanted_api = 1
|