mirror of
https://github.com/godotengine/godot.git
synced 2025-02-10 21:01:20 +00:00
Fix TouchScreenButton error spam
This commit is contained in:
parent
c630c2001d
commit
db19cc60fb
@ -190,7 +190,7 @@ String TouchScreenButton::get_action() const {
|
|||||||
void TouchScreenButton::input(const Ref<InputEvent> &p_event) {
|
void TouchScreenButton::input(const Ref<InputEvent> &p_event) {
|
||||||
ERR_FAIL_COND(p_event.is_null());
|
ERR_FAIL_COND(p_event.is_null());
|
||||||
|
|
||||||
if (!get_tree()) {
|
if (!is_visible_in_tree()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -198,8 +198,6 @@ void TouchScreenButton::input(const Ref<InputEvent> &p_event) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ERR_FAIL_COND(!is_visible_in_tree());
|
|
||||||
|
|
||||||
const InputEventScreenTouch *st = Object::cast_to<InputEventScreenTouch>(*p_event);
|
const InputEventScreenTouch *st = Object::cast_to<InputEventScreenTouch>(*p_event);
|
||||||
|
|
||||||
if (passby_press) {
|
if (passby_press) {
|
||||||
|
Loading…
Reference in New Issue
Block a user