1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Fix Wrong Shape Offsets in Tileset

Closes #30994

When modifying the properties of a tileset in the editor, some properties only apply to the first tile (such as the shape offset).

This change resolves that issue by traversing the changes to all of the shapes in the tileset instead of the first one.
This commit is contained in:
Emmanuel Barroga
2019-08-03 00:41:36 -07:00
parent 4d08f72b76
commit 625b87633e

View File

@@ -148,15 +148,20 @@ bool TileSet::_set(const StringName &p_name, const Variant &p_value) {
}
}
} else if (what == "shape")
tile_set_shape(id, 0, p_value);
for (int i = 0; i < tile_get_shape_count(id); i++)
tile_set_shape(id, i, p_value);
else if (what == "shape_offset")
tile_set_shape_offset(id, 0, p_value);
for (int i = 0; i < tile_get_shape_count(id); i++)
tile_set_shape_offset(id, i, p_value);
else if (what == "shape_transform")
tile_set_shape_transform(id, 0, p_value);
for (int i = 0; i < tile_get_shape_count(id); i++)
tile_set_shape_transform(id, i, p_value);
else if (what == "shape_one_way")
tile_set_shape_one_way(id, 0, p_value);
for (int i = 0; i < tile_get_shape_count(id); i++)
tile_set_shape_one_way(id, i, p_value);
else if (what == "shape_one_way_margin")
tile_set_shape_one_way_margin(id, 0, p_value);
for (int i = 0; i < tile_get_shape_count(id); i++)
tile_set_shape_one_way_margin(id, i, p_value);
else if (what == "shapes")
_tile_set_shapes(id, p_value);
else if (what == "occluder")