Fix potential null exception in screen button without texture assigned
This commit is contained in:
parent
b324ff7ea5
commit
fd13b25d6e
1 changed files with 2 additions and 2 deletions
|
@ -242,8 +242,8 @@ void TouchScreenButton::_input(const InputEvent& p_event) {
|
|||
touched=true;
|
||||
}
|
||||
} else {
|
||||
|
||||
touched=Rect2(Point2(),texture->get_size()).has_point(coord);
|
||||
if (!texture.is_null())
|
||||
touched=Rect2(Point2(),texture->get_size()).has_point(coord);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue