You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recent tests have shown us that if you save any Tiled map with Tiled version 1.9.0 or higher, the map becomes irreversibly incompatible with LITIENGINE's TMX deserializer. Tiled has removed Object types in favor of classes, converting all your type="MyMapObjectType" attributes into class="MyMapObjectType".
As a consequence, our MapObjectLoader won't be able to assign any MapObjectType.
The text was updated successfully, but these errors were encountered:
Tiled 1.10 has been released and reverts this change.
I haven't tested this yet, but at least it should once more be possible to save maps with Tiled 1.10 and load MapObjects in LITIENGINE. https://www.mapeditor.org/2023/03/10/tiled-1-10-released.html
Recent tests have shown us that if you save any Tiled map with Tiled version 1.9.0 or higher, the map becomes irreversibly incompatible with LITIENGINE's TMX deserializer. Tiled has removed Object types in favor of classes, converting all your
type="MyMapObjectType"
attributes intoclass="MyMapObjectType"
.As a consequence, our MapObjectLoader won't be able to assign any MapObjectType.
The text was updated successfully, but these errors were encountered: