LD54_Box_Survival/boundary.gd
Stephen Seo 7cb180c245 Work
Impl. enough for basic gameplay and has some particle effects.
2023-09-30 15:38:24 +09:00

12 lines
242 B
GDScript

extends StaticBody2D
# Called when the node enters the scene tree for the first time.
func _ready():
modulate = Color(0.7, 0.5, 0.2)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass