8 lines
142 B
GDScript3
8 lines
142 B
GDScript3
|
extends Node2D
|
||
|
|
||
|
func phase():
|
||
|
$Sprite.play("spawn")
|
||
|
$"Riangle Zone".spawn()
|
||
|
await get_tree().create_timer(1).timeout
|
||
|
$Sprite.play("idle")
|