cave-of-dreams/scripts/marker/procgen_spawn.gd
2026-05-19 22:18:33 -04:00

10 lines
321 B
GDScript

extends Node3D
## The spawn class to use when spawning enemies. Higher priority than spawn_enemy.
@export var spawn_class = ""
## The enemy to spawn.
@export var spawn_enemy = "dreamer"
## The properties to apply to an enemy. Use strings for keys, and any value for attributes.
@export var properties: Dictionary = {}