mirror of
https://github.com/RPG-Research/bcirpg.git
synced 2024-04-16 14:23:01 +00:00
11 lines
270 B
GDScript
11 lines
270 B
GDScript
extends Button
|
|
|
|
func _process(delta):
|
|
if Input.is_action_pressed(get_meta('input_next')):
|
|
if has_focus():
|
|
emit_signal("button_down")
|
|
if Input.is_action_just_released(get_meta('input_next')):
|
|
if has_focus():
|
|
emit_signal("button_up")
|
|
emit_signal("pressed")
|