Fixed placeholder texture. Added correct ship movement

This commit is contained in:
2025-10-20 22:21:01 +03:00
parent be3db76fe2
commit c5f53b845a
5 changed files with 65 additions and 21 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ extends Node
func _ready() -> void:
var player : Node2D = load("res://game/entities/player.tscn").instantiate()
var player : Node = load("res://game/entities/player.tscn").instantiate()
player.position = Vector2(100, 100)
add_child(player)