extends Node var config: ConfigFile = ConfigFile.new() const SETTINGS_PATH: String = "res://settings.ini" func _ready() -> void: get_dir() if !FileAccess.file_exists(SETTINGS_PATH): default_settings() else: config.load(SETTINGS_PATH) func get_dir() -> String: if Engine.is_editor_hint() || OS.has_feature("editor"): return "res:/" else: return OS.get_executable_path().get_base_dir() func save_x_settings(key: String, x_value: String) -> void: config.set_value("XSettings", key, x_value) config.save(SETTINGS_PATH) func load_x_settings() -> Dictionary: var x_settings: Dictionary = {} for key: String in config.get_section_keys("XSettings"): x_settings[key] = config.get_value("XSettings", key) return x_settings func save_z_settings(key: String, z_value: String) -> void: config.set_value("ZSettings", key, z_value) config.save(SETTINGS_PATH) func load_z_settings() -> Dictionary: var z_settings: Dictionary = {} for key: String in config.get_section_keys("ZSettings"): z_settings[key] = config.get_value("ZSettings", key) return z_settings func default_settings() -> void: #Title config.set_value("XSettings", "x_field_here", "you can make a million lines of these and then read them in your ready functions when needed. you can also make a ton more 'categories' than one.") config.set_value("ZSettings", "z_field_here", "Another example with a different category."
or share this direct link: