New Icon; Touch Controls; Menu with Help; Added Music

This commit is contained in:
Exobyt 2024-09-15 02:57:08 +02:00
parent 9e3349eec3
commit e87f8c3756
71 changed files with 1084 additions and 278 deletions

View file

@ -18,11 +18,6 @@ func _physics_process(delta: float) -> void:
interactIcon.hide()
elif not isCarryied():
interactIcon.show()
#if isCarryied():
#interactIcon.hide()
#elif not isCarryied():
#interactIcon.show()
if player != null:
global_position.y = move_toward(global_position.y, player.global_position.y, 3)
@ -46,13 +41,6 @@ func getValue():
func isCarryied():
return player != null
#func _on_area_entered(area: Area2D) -> void:
#if area.is_in_group("Player"):
#interactIcon.show()
#
#
#
func _on_area_exited(area: Area2D) -> void:
if area.is_in_group("Player"):
interactIcon.hide()