12 lines
242 B
GDScript3
12 lines
242 B
GDScript3
|
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
|