Sfoglia il codice sorgente

Merge pull request #432 from marynate/PR-fix-screen-button-null-texture

Fix potential null exception in screen button without texture assigned
reduz 11 anni fa
parent
commit
ad61dfed5d
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      scene/2d/screen_button.cpp

+ 2 - 2
scene/2d/screen_button.cpp

@@ -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);
 				}