mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Add button_down and button_up signals
(cherry picked from commit 8a1b1ab6d6)
This commit is contained in:
parent
83864514f9
commit
a21b9caa2a
1 changed files with 11 additions and 0 deletions
|
|
@ -55,6 +55,8 @@ void BaseButton::_input_event(InputEvent p_event) {
|
|||
|
||||
if (b.pressed) {
|
||||
|
||||
emit_signal("button_down");
|
||||
|
||||
if (!toggle_mode) { //mouse press attempt
|
||||
|
||||
status.press_attempt=true;
|
||||
|
|
@ -86,6 +88,8 @@ void BaseButton::_input_event(InputEvent p_event) {
|
|||
|
||||
} else {
|
||||
|
||||
emit_signal("button_up");
|
||||
|
||||
if (status.press_attempt && status.pressing_inside) {
|
||||
// released();
|
||||
emit_signal("released");
|
||||
|
|
@ -100,9 +104,11 @@ void BaseButton::_input_event(InputEvent p_event) {
|
|||
|
||||
status.press_attempt=true;
|
||||
status.pressing_inside=true;
|
||||
emit_signal("button_down");
|
||||
|
||||
} else {
|
||||
|
||||
emit_signal("button_up");
|
||||
|
||||
if (status.press_attempt &&status.pressing_inside) {
|
||||
|
||||
|
|
@ -173,6 +179,7 @@ void BaseButton::_input_event(InputEvent p_event) {
|
|||
status.pressing_button++;
|
||||
status.press_attempt=true;
|
||||
status.pressing_inside=true;
|
||||
emit_signal("button_down");
|
||||
|
||||
} else if (status.press_attempt) {
|
||||
|
||||
|
|
@ -185,6 +192,8 @@ void BaseButton::_input_event(InputEvent p_event) {
|
|||
status.press_attempt=false;
|
||||
status.pressing_inside=false;
|
||||
|
||||
emit_signal("button_up");
|
||||
|
||||
if (!toggle_mode) { //mouse press attempt
|
||||
|
||||
pressed();
|
||||
|
|
@ -467,6 +476,8 @@ void BaseButton::_bind_methods() {
|
|||
|
||||
ADD_SIGNAL( MethodInfo("pressed" ) );
|
||||
ADD_SIGNAL( MethodInfo("released" ) );
|
||||
ADD_SIGNAL( MethodInfo("button_up") );
|
||||
ADD_SIGNAL( MethodInfo("button_down") );
|
||||
ADD_SIGNAL( MethodInfo("toggled", PropertyInfo( Variant::BOOL,"pressed") ) );
|
||||
ADD_PROPERTYNZ( PropertyInfo( Variant::BOOL, "disabled"), _SCS("set_disabled"), _SCS("is_disabled"));
|
||||
ADD_PROPERTY( PropertyInfo( Variant::BOOL, "toggle_mode"), _SCS("set_toggle_mode"), _SCS("is_toggle_mode"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue