2020-08-31 07:35:52 +00:00
|
|
|
extends TouchScreenButton
|
|
|
|
|
|
|
|
#func _input(always):
|
|
|
|
func _physics_process(delta):
|
|
|
|
if Input.is_action_pressed("move_left") and Input.is_action_pressed("move_right"):
|
|
|
|
show()
|
|
|
|
elif Input.is_action_pressed("ui_end"):
|
2020-10-06 12:03:54 +00:00
|
|
|
hide()
|
2020-10-03 14:00:15 +00:00
|
|
|
|
2020-08-31 07:35:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
|
|
#func _process(delta):
|
|
|
|
# pass
|