1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Updated tile_set_editor_plugin.cpp And area.cpp# This is a combination of 2 commits.

Updated tile_set_editor_plugin.cpp And area.cpp

Updated with clang-format

Updated tile_set_editor_plugin.cpp And area.cpp
This commit is contained in:
Siddharth
2019-03-18 17:00:30 +05:30
parent 6f404efd9a
commit 2d995372d8
2 changed files with 3 additions and 2 deletions

View File

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