Updated tile_set_editor_plugin.cpp And area.cpp Updated with clang-format Updated tile_set_editor_plugin.cpp And area.cpp
@@ -2417,7 +2417,9 @@ void TileSetEditor::draw_polygon_shapes() {
colors.push_back(c_bg);
}
- if (polygon.size() > 2) {
+ if (polygon.size() == 0)
+ continue;
+ else if (polygon.size() > 2) {
workspace->draw_polygon(polygon, colors);
@@ -756,7 +756,6 @@ Area::Area() :
monitorable = false;
collision_mask = 1;
collision_layer = 1;
- set_ray_pickable(false);
set_monitoring(true);
set_monitorable(true);