channel-switcher/games/space invaders/invaders_bullet.gd

13 lines
318 B
GDScript3
Raw Permalink Normal View History

2025-05-23 21:36:52 +10:00
extends Area2D
@export var speed : float = 100
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
position.y -= delta * speed