Tagged Questions
2
votes
1answer
137 views
How to know the boundaries of an isometric tile?
In a 4x4 square tile, it's easy to know which pixels are inside the tile's boundaries. I know immediately that the 4th vertical pixel is supposed to be drawn but the 5th isn't.
However, on a ...
18
votes
1answer
732 views
Difference between “staggered” isometric and “normal” isometric tilemaps?
The Tiled Map Editor v0.9 recently added support for staggered tilemaps in addition to its usual isometric tilemap support.
What are the exact technical differences between these two types of ...
0
votes
2answers
234 views
How to draw only visible tiles?
I have a big map with isometric tiles(3d camera), how can i draw only visible tiles ?
Whats the best way to do that ? space partitionning (octrees etc...)?
0
votes
1answer
278 views
Please help me with my 2D isometric tile picking [duplicate]
Possible Duplicate:
How to convert mouse coordinates to isometric indexes?
Okay, I apologise in advance if I make no sense here.
Basically, I've got a simple application that takes in a ...
-3
votes
1answer
355 views
Slick2D TileD Map Editor Properties [closed]
So I used the following post to help me render my isometric map in Slick2D:
Slick2D Isometric TiledMap Rendering Problem
Big thanks and credit to arminb for the code supplied and for the fix to be ...
2
votes
1answer
173 views
How to handle slopes/bridges in a 2d grid turn based strategy game [duplicate]
I was wondering about the following:
In a 2D turn-based strategy game (using some grid(i.e. tiles, isometric hexagons) as movement), what techniques do they use to determine where a character moves ...
5
votes
5answers
1k views
Best technique for drawing isometric tiles
I'm thinking about making a simple isometric game with HTML5 Canvas, and wondering what's the fastest way to render the tiles.
Since the tiles are diamond shaped, but drawImage draws rectangles, I ...
2
votes
1answer
255 views
Non-square Isometric tiled maps
I'm beginning to make a tile-based 4x game, but I ran into a conceptual issue: My inspiration for this game are the Civilization games, particularly Civ 2, and I noticed something I was interested in ...
-3
votes
1answer
209 views
Isometric Rendering and Picking [duplicate]
Possible Duplicate:
Isometric rendering and picking?
I've been looking for a formula to plot (world->screen) and mouse pick (world->screen) isometric tiles in a non-diamond-shaped world. ...
-4
votes
1answer
306 views
Smooth scrolling a staggered iso map [closed]
I got a staggered iso map that I want to be able to drag scroll with the mouse. I have it almost working but it is a bit glitchy, especially near the borders. Maybe you have an idea how to fix that.
...
-1
votes
1answer
1k views
Isometric 2D game without tiles. Is there a solution?
Is it possible to create an isometric view of the game without the use of tiles
Looking at this forum and stackoverflow.com and gamedev.stackexchange.com.
(I work with Corona SDK and could not find a ...
10
votes
4answers
365 views
How to deal with animated doors in isometric tiles
I've got a tricky issue I'm not sure how to tackle best:
I have an animated tile of a door. When it's closed it should be sorted one way, but when it's openend it will need to be sorted a different ...
2
votes
3answers
2k views
Getting isometric grid coordinates from standard X,Y coordinates
I'm currently trying to add sprites to an isometric Tiled TMX map using Objects in cocos2d. The problem is the X and Y metadata from TMX object are in standard 2d format (pixels x, pixels y), instead ...
6
votes
2answers
2k views
How to create tilted (height) isometric tiles
This is perhaps best explained pictorially. I am trying to create a 2.5D isometric game. My vision is for the game to look something like my goal:
I am not a graphics artist, so I'm having some ...
-1
votes
2answers
509 views
How do I pick correct tile in isometric 3D map?
I want to know how to pick the correct tile on a isometric map in 3D space. Here is a 2D example.
They use a colour key map to correctly pick the coordinate. How can I achieve this in 3D space? Is ...
2
votes
2answers
543 views
How do I find which isometric tiles are inside the cameras current view?
I'm putting together an isometric engine and need to cull the tiles that aren't in the camera's current view. My tile coordinates go from left to right on the X and top to bottom on the Y with (0,0) ...
2
votes
2answers
272 views
Calculating the number of tiles shown on an isometric map
I'm currently changing an existing computer game from a top-down view to an isometric view. The map consists of an infinite number of tiles. Only the tiles which are currently visible in the players ...
5
votes
1answer
1k views
Creating an isometric map with hexagonal tiles for iPad
I'm new to game development, so I need a little help.
I have to write down a little game which has a floor with hexagonal tiles but it must be seen in a isometric view like The Sims.
Ignoring the ...
0
votes
0answers
214 views
How to compute tile offset for different isometric angles?
I am working on an isometric game and the designers want to use a different isometric angle than the default one, where I simply had to do a 2/1 offset based on tile size.
I know what the new ...
2
votes
0answers
616 views
Collision Detection on floor tiles Isometric game
I am having a very hard to time figuring out a bug in my code. It should have taken me 20 minutes but instead I've been working on it for over 12 hours. I am writing a isometric tile based game where ...
5
votes
2answers
778 views
How do I get the distance between 2 points on an isometric grid?
How do I get the distance between 2 points on an isometric grid? I'm creating a facebook isometric game (in as3), and when I move around a particular type of building, I need to know if it comes ...
7
votes
1answer
952 views
Finding out which tile a mouse click landed in
I am working on an isometric grid based game and im having an issue trying to link a mouse click from the user to a tile. I have been able to split the problem into 2 parts :
Finding a rectangle ...
2
votes
4answers
2k views
Tile based isometric depth sorting on different size objects.
I am creating a tile based isometric game.
The problem we are having is with depth sorting, we tried a lot of methods but none work.
They all do a great job but its not perfect, they seem to bug ...
5
votes
2answers
939 views
Perfect fit for isometric tiles in AS3 with BitmapData
I'm creating a game which uses 320x160 sized isometric tiles. I've got an editor that allows me to take loaded in tiles and plot them. The map size is 8x8, and instead of placing down 64 movieclips, ...
16
votes
1answer
4k views
Isometric rendering and picking?
I've been looking for a formula to plot (world->screen) and mouse pick (world->screen) isometric tiles in a diamond-shaped world.
The ones I've tried always seem to be, well, off.
What's the ...
15
votes
3answers
3k views
Pleasing isometric hexagons
What angles and long-side:short-side ratios give the most aesthetically pleasing and graphically regular isometric (squashed, flat side up) hexes; that additionally resolve to whole pixel sizes for ...