mirror of
https://port.numenaute.org/aleajactaest/khanat-client.git
synced 2024-11-09 08:49:05 +00:00
35 lines
734 B
GDScript
35 lines
734 B
GDScript
extends Control
|
|
|
|
signal time_of_day_changed( value )
|
|
signal mist_level_changed( value )
|
|
signal oubli_minus_pressed
|
|
signal oubli_plus_pressed
|
|
signal douleur_minus_pressed
|
|
signal douleur_plus_pressed
|
|
|
|
func _on_time_of_day_value_changed(value):
|
|
emit_signal( "time_of_day_changed", value )
|
|
|
|
|
|
func _on_mist_level_value_changed(value):
|
|
emit_signal( "mist_level_changed", value )
|
|
|
|
|
|
func _on_oubli_minus_pressed():
|
|
emit_signal( "oubli_minus_pressed" )
|
|
|
|
|
|
func _on_oubli_plus_pressed():
|
|
emit_signal( "oubli_plus_pressed" )
|
|
|
|
|
|
func _on_douleur_minus_pressed():
|
|
emit_signal( "douleur_minus_pressed" )
|
|
|
|
|
|
func _on_douleur_plus_pressed():
|
|
emit_signal( "douleur_plus_pressed" )
|
|
|
|
|
|
func _on_debug_window_mouse_exited():
|
|
pass
|