DuckRun/scenes/easteregg/easteregg.gd

13 lines
300 B
GDScript3
Raw Normal View History

2024-10-01 15:56:30 +02:00
extends RigidBody2D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
$Sprite.frame = randi_range(0,4)
position.x += randi_range(-10,10)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass