|
@@ -155,6 +155,9 @@ void BaseButton::on_action_event(Ref<InputEvent> p_event) {
|
|
|
}
|
|
|
status.pressed = !status.pressed;
|
|
|
_unpress_group();
|
|
|
+ if (button_group.is_valid()) {
|
|
|
+ button_group->emit_signal("pressed", this);
|
|
|
+ }
|
|
|
_toggled(status.pressed);
|
|
|
_pressed();
|
|
|
}
|
|
@@ -220,6 +223,9 @@ void BaseButton::set_pressed(bool p_pressed) {
|
|
|
|
|
|
if (p_pressed) {
|
|
|
_unpress_group();
|
|
|
+ if (button_group.is_valid()) {
|
|
|
+ button_group->emit_signal("pressed", this);
|
|
|
+ }
|
|
|
}
|
|
|
_toggled(status.pressed);
|
|
|
|
|
@@ -480,6 +486,7 @@ BaseButton *ButtonGroup::get_pressed_button() {
|
|
|
void ButtonGroup::_bind_methods() {
|
|
|
ClassDB::bind_method(D_METHOD("get_pressed_button"), &ButtonGroup::get_pressed_button);
|
|
|
ClassDB::bind_method(D_METHOD("get_buttons"), &ButtonGroup::_get_buttons);
|
|
|
+ ADD_SIGNAL(MethodInfo("pressed", PropertyInfo(Variant::OBJECT, "button")));
|
|
|
}
|
|
|
|
|
|
ButtonGroup::ButtonGroup() {
|