mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 15:38:14 +00:00
added the game
This commit is contained in:
15
addons/mod_loader/resources/options_current.gd
Normal file
15
addons/mod_loader/resources/options_current.gd
Normal file
@@ -0,0 +1,15 @@
|
||||
class_name ModLoaderCurrentOptions
|
||||
extends Resource
|
||||
|
||||
# The default options set for the mod loader
|
||||
@export var current_options: Resource = preload(
|
||||
"res://addons/mod_loader/options/profiles/default.tres"
|
||||
)
|
||||
|
||||
# Overrides for all available feature tags through OS.has_feature()
|
||||
# Format: Dictionary[String: ModLoaderOptionsProfile] where the string is a tag
|
||||
# Warning: Some tags can occur at the same time (Windows + editor for example) -
|
||||
# In a case where multiple apply, the last one in the dict will override all others
|
||||
@export var feature_override_options: Dictionary = {
|
||||
"editor": preload("res://addons/mod_loader/options/profiles/editor.tres")
|
||||
}
|
Reference in New Issue
Block a user