added Graphics and sound Effects and more overhauls
This commit is contained in:
parent
c887a2168c
commit
b9d4288900
214 changed files with 3378 additions and 198 deletions
10
scenes/spaceShip/player/input.gd
Normal file
10
scenes/spaceShip/player/input.gd
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
extends Control
|
||||
|
||||
@onready var moveButton = $MoveButton
|
||||
@onready var shootButton = $ShootButton
|
||||
@onready var shootButtonCorner = $ShootButtonCorner
|
||||
@onready var moveButtonCorner = $MoveButtonCorner
|
||||
|
||||
func _physics_process(delta: float) -> void:
|
||||
shootButton.global_position = shootButtonCorner.global_position
|
||||
moveButton.global_position = moveButtonCorner.global_position
|
||||
Loading…
Add table
Add a link
Reference in a new issue