midori-school/levels/Testrooms/lilytest.gd

13 lines
252 B
GDScript3
Raw Normal View History

2024-01-30 04:05:17 +01:00
extends Node2D
var boss
# Called when the node enters the scene tree for the first time.
func _ready():
boss = $Lily
boss.add_to_group("boss")
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass