We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When creating a tileset, the tileset entry is replaced by a reference in the tmx file like so:
- <tileset firstgid="34" name="player" tilewidth="32" tileheight="60"> - <image source="../gfx/player.png" width="128" height="300"/> - </tileset> + <tileset firstgid="34" source="player.tsx"/>
partially bad planning on Tiled's part? Perhaps. Regardless, I just broke my level.
The text was updated successfully, but these errors were encountered:
added the following to the if conditional in TmxTileSet.hx:
source = new Fast(Xml.parse(Assets.getText(Std.string("maps/" + source.att.source)))); source = source.node.tileset;
and made the else branch execute always.
Problem is the magic "maps/" string, which could be resolved by getting the path when tmxmap is loading from file.
Sorry, something went wrong.
No branches or pull requests
When creating a tileset, the tileset entry is replaced by a reference in the tmx file like so:
partially bad planning on Tiled's part? Perhaps. Regardless, I just broke my level.
The text was updated successfully, but these errors were encountered: