A Minecraft style clone in Godot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

10 lines
325 B

## Provides an easy reference for save settings through an export rather than code
## Should be attached to the main world/level scene
class_name SaveLevelDataComponent
extends Node
@export var settings: SaveGameSettings ## The SaveGameSettings resource
func _ready() -> void:
add_to_group("save_level_data_component")