Merge pull request #26722 from MarianoGnu/fix_24238
TileSetEditor: Don't draw invalid occlusion shapes. Fixes #24238
This commit is contained in:
commit
2f2fa8db69
1 changed files with 5 additions and 3 deletions
|
@ -2460,10 +2460,12 @@ void TileSetEditor::draw_polygon_shapes() {
|
||||||
workspace->draw_polygon(polygon, colors);
|
workspace->draw_polygon(polygon, colors);
|
||||||
|
|
||||||
if (!creating_shape) {
|
if (!creating_shape) {
|
||||||
for (int j = 0; j < polygon.size() - 1; j++) {
|
if (polygon.size() > 1) {
|
||||||
workspace->draw_line(polygon[j], polygon[j + 1], c_border, 1, true);
|
for (int j = 0; j < polygon.size() - 1; j++) {
|
||||||
|
workspace->draw_line(polygon[j], polygon[j + 1], c_border, 1, true);
|
||||||
|
}
|
||||||
|
workspace->draw_line(polygon[polygon.size() - 1], polygon[0], c_border, 1, true);
|
||||||
}
|
}
|
||||||
workspace->draw_line(polygon[polygon.size() - 1], polygon[0], c_border, 1, true);
|
|
||||||
}
|
}
|
||||||
if (shape == edited_occlusion_shape) {
|
if (shape == edited_occlusion_shape) {
|
||||||
draw_handles = true;
|
draw_handles = true;
|
||||||
|
|
Loading…
Reference in a new issue