Files
GGJ26/scenes/character/tag.gd
minimata 3477b89145
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 10s
Create tag and build when new code gets to main / Export (push) Successful in 1m15s
Basic character, trait and preference resources
2026-01-30 22:30:52 +01:00

12 lines
152 B
GDScript

extends Resource
class_name TagResource
enum Stimuli {
VISION,
SPEAKING,
HEARING
}
@export var name: String
@export var stimulis: Array[Stimuli]