Questions tagged [tiled]

Tiled is a general purpose tile-based game map editor under GPL license. It supports several map formats (XML, JSON) and multiple platforms.

Tiled is a general purpose tile-based game map editor under GPL license. It supports several map formats (XML, JSON) and multiple platforms.

390 questions
0
votes
1 answer

How to export tile maps from Tiled which are compatible with `createObjectsFrom` in Phaser?

The function createFromObjects has the gid as the second argument to be passed. The argument is used in the createFromObjects function in the following way: createFromObjects: function (name, gid, key, frame, exists, autoCull, group, CustomClass,…
musically_ut
  • 34,028
  • 8
  • 94
  • 106
0
votes
1 answer

Mismatching between TMX map in Tiled and the one loaded in Andengine

I am creating my own TMX map in Tiled. I've imported some Patterns Set and set them in the corresponding Tile Layer. The map looks good in Tiled but when I load it in my level using Andengine, the images displayed in each tile are different to the…
Barbara PM
  • 512
  • 2
  • 8
  • 29
0
votes
0 answers

CCSprite shader program leaves 1px transparent border

I'm developing a game where the players can drag and drop CCSprites around an Isometric map which is created using the Tiled Map Editor. To allow automatic vertexZ reordering I have enabled the depthTest option of [CCDirector sharedDirector] in my…
Eyeball
  • 3,267
  • 2
  • 26
  • 50
0
votes
0 answers

Fixed sprite on the tile map cocos2d?

I can't figure out how to handle with tile map layer and other node. I want to make another one layer(CCNode) for such things as menu button, score, joystick that must always stay fixed(not scrolled), when the whole map is…
user3475724
0
votes
0 answers

How to make a sprite with fixed position in cocos2d-iphone v3?

How to make a sprite with fixed position in cocos2d-iphone v3 ?I tried to make another one CCNode, and add to it, but it is still scrolled with the whole tile map. EDIT: That's my code CCNode *cNode; cNode=[CCNode node]; [self…
user3475724
0
votes
1 answer

Using Tile Maps with cocos2d - how do I handle a large amount of images?

I am building a game where the users (players) can build their own town. There they can build houses, add furniture to the houses etc etc. Basically similar to The Sims. I am using the Tiled Map Editor to create a basis for each town. There I…
Eyeball
  • 3,267
  • 2
  • 26
  • 50
0
votes
0 answers

Sprite Kit create a polygon from a Tiled object layer tmx?

I have this data from a Tiled tmx file
Xofear
  • 210
  • 1
  • 8
0
votes
2 answers

Large tmx map And outOfMemory error with AndEngine

I have a large tmx map for my Andengine game, which is 9000*30 in size, and when I want to load it into the application, I get an outOfMemory error. Can anyone help me with this problem? Any idea?
Reza Ahmadi
  • 57
  • 1
  • 11
0
votes
1 answer

LibGDX, Having problems with TMX map (rendering, resizing)

I'm making a new Android Game with LibGDX, a platformer but I'm having issues with TMX (Tiled) maps. I read a lot about tiles gaps problems with LibGDX but I can't make it work well. Here is my problem: sometimes, when the character moves, I can see…
user3575481
0
votes
1 answer

TMX pattern images

I'm looking for a website with patterns to build TMX files, to game tiled maps. I would like to find art designed (sand tiles, grass tiles, sky tiles, stones tiles, vegetables tiles, etc.) Can anyone help me? Thanks a lot
Pablo Darde
  • 5,844
  • 10
  • 37
  • 55
0
votes
1 answer

tiled map object coordinates

I have a problem with tiled map object: I created a rectangle object by tiled map editor. When I render the map in Libgdx I want to create a text(using font) on this rectangle. For this reason I get the rectangle's coordinates x,y and create the…
0
votes
0 answers

LibGDX File not found

Im trying to load a tiled map in libGDX with tileMap = new TmxMapLoader().load("maps/level1.tmx"); but somehow it returns a File not found exception: Caused by: com.badlogic.gdx.utils.GdxRuntimeException: File not found: maps\level1.tmx…
0
votes
1 answer

TiledMap Drops FPS?

Hello I am making a 2D RPG in slick2D and I made a small class for creating new maps public class Map { TiledMap tiledmap = null; public Map(String location, int x, int y) { try { tiledmap = new TiledMap(location); …
Genthorn
  • 21
  • 8
0
votes
1 answer

how do I make a tiled map base64

Hello everyone I am making a game in Java using the Slick library. this is my first time doing it and I need some help. for the map I am using tiled. and whenever I try to call the tmx file I get this error : Thu May 29 16:17:57 EDT 2014…
0
votes
0 answers

Get rotation from Tiled object

How can I get rotation from Tiled map object? It's listed in the properties, but object.getProperties().get("rotation"); returns null and so does this: object.getProperties().get("Rotation");. My first though was to cast the whole object into…
Vilda
  • 1,675
  • 1
  • 20
  • 50