gd: added input addon

This commit is contained in:
2025-05-27 19:20:46 +02:00
parent d8a1604af9
commit c8d8c7ec25
683 changed files with 21608 additions and 2 deletions

View File

@ -0,0 +1,13 @@
extends Node2D
@export var speed:float = 600
var direction:Vector2 = Vector2.ZERO
func _ready():
await get_tree().create_timer(5).timeout
queue_free()
func _process(delta):
position += speed * direction * delta