DuckRun/scenes/easteregg/easteregg.gd

6 lines
114 B
GDScript3
Raw Permalink Normal View History

2024-10-01 15:56:30 +02:00
extends RigidBody2D
func _ready() -> void:
2024-10-22 19:52:35 +02:00
$Sprite.frame = randi_range(0,12)
2024-10-01 15:56:30 +02:00
position.x += randi_range(-10,10)