basic game manager
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 7s
Create tag and build when new code gets to main / Export (push) Successful in 1m11s

This commit is contained in:
2026-01-31 11:48:13 +01:00
parent 158e18f1fe
commit 6640ccace8
12 changed files with 94 additions and 18 deletions

View File

@@ -0,0 +1,13 @@
extends Resource
class_name MaskedChara
@export var character: CharacterResource
@export var masks: Array[MaskResource]
# Make sure that every parameter has a default value.
# Otherwise, there will be problems with creating and editing
# your resource via the inspector.
func _init(p_character: CharacterResource = CharacterResource.new(), p_mask: Array[MaskResource] = []):
character = p_character
masks = p_mask