We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c84b2da commit 7d6af86Copy full SHA for 7d6af86
export_to_godot_tilemap.js
@@ -181,7 +181,7 @@ class GodotTilemapExporter {
181
collision_mask: object.property("collision_mask")
182
}
183
),
184
- this.meta_properties(layer.properties())
+ this.meta_properties(object.properties())
185
);
186
187
const shapeId = this.addSubResource("RectangleShape2D", {
@@ -200,7 +200,7 @@ class GodotTilemapExporter {
200
position: `Vector2( ${objectPositionX}, ${objectPositionY} )`,
201
202
203
+ {}
204
205
} else if (object.type == "Node2D") {
206
this.tileMapsString += stringifyNode(
0 commit comments