Skip to content

Commit

Permalink
fix: add "Point" objectType to TiledObject from Tiled 1.1 update
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjamuffin99 committed Oct 6, 2024
1 parent 0a79096 commit e1db538
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions flixel/addons/editors/tiled/TiledObject.hx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class TiledObject
public static inline var POLYGON = 2;
public static inline var POLYLINE = 3;
public static inline var TILE = 4;
public static inline var POINT = 5;

public var x:Int;
public var y:Int;
Expand Down Expand Up @@ -148,6 +149,10 @@ class TiledObject
objectType = POLYLINE;
getPoints(source.node.polyline);
}
else if (source.hasNode.point)
{
objectType = POINT;
}
}

function getPoints(node:Access):Void
Expand Down

0 comments on commit e1db538

Please sign in to comment.