50 lines
1.2 KiB
GDScript3
50 lines
1.2 KiB
GDScript3
|
# settings.gd
|
||
|
# CORE project configuration file
|
||
|
#
|
||
|
# This file is part of StarOpenSource CORE (SOSCORE)
|
||
|
# Made by the StarOpenSource Project and Contributers
|
||
|
# Licensed under GNU GPLv3
|
||
|
extends Node
|
||
|
|
||
|
# Hello fellow dev! This is the CORE configuration file.
|
||
|
# This file can be used to customize CORE to your liking.
|
||
|
# You do not need to modify any CORE script as some things
|
||
|
# might break (everything depends on each other).
|
||
|
# Thank you for using CORE :)
|
||
|
|
||
|
|
||
|
# CORE
|
||
|
## core_startscript
|
||
|
## 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://"
|
||
|
|
||
|
# wmgr (Window Manager)
|
||
|
## wmgr_size_x
|
||
|
## Type: int
|
||
|
## Default value: 960
|
||
|
## Defines the default window size (x axis)
|
||
|
var wmgr_size_x = 960
|
||
|
## wmgr_size_y
|
||
|
## Type: Int
|
||
|
## Default value: 540
|
||
|
## Defines the default window size (y axis)
|
||
|
var wmgr_size_y = 540
|
||
|
## wmgr_title
|
||
|
## Type: String
|
||
|
## Default value: "Application/Game using CORE"
|
||
|
var wmgr_title = "Application/Game using CORE"
|
||
|
## wmgr_mode
|
||
|
## Type:int
|
||
|
## Default value: 0
|
||
|
## ID | Mode
|
||
|
## 0 | Windowed
|
||
|
## 1 | Minimized
|
||
|
## 2 | Maximized
|
||
|
## 3 | Fullscreen
|
||
|
## 4 | Exclusive fullscreen
|
||
|
var wmgr_mode = 0
|