8 lines
144 B
GDScript
8 lines
144 B
GDScript
extends Area2D
|
|
|
|
@export var speed: int = 1000
|
|
var direction: Vector2 = Vector2.UP
|
|
|
|
func _process(delta):
|
|
position += direction * speed * delta
|