A method for visually representing three-dimensional objects in two dimensions, often referring to isometric tiles.
0
votes
1answer
29 views
Transforming and drawing isometric textures
I'm planning to make a game and doing some research.
One of the features will be an isometric third-person view, which should be able to be rotated freely over 360 degrees.
This rules out the use of a ...
0
votes
0answers
48 views
CraftyJS: z-index issue with isometric & character Sprites on some Tiles + Tile coords seem to be wrong
I am having a weird problem with the library CraftyJS.
First of all, I generate my tiles with the following (implicit Crafty.init() & Crafty.canvas.init() before):
iso = ...
0
votes
0answers
68 views
Drawing an Isometric image split into layers
I've seen quite a bit of questions regarding how to draw isometric tiles, and most all point at being drawn back to front, top down. However I'm trying to find a way to prevent clipping with a single ...
1
vote
0answers
446 views
libgdx isometric tiled map and animations
I've some problem with libgdx and tiled maps.
I come from corona sdk (lua) and I've used lime (third party lib to handle tmx maps), now I switched to libgdx and followed this really recent feature:
...
0
votes
0answers
52 views
How to calculate tile in grid onTouch
I have a map, composed of tiles forming a grid.
Lets say I click somewhere on map (image), and I want to calculate which tile it is
Lets say tiles are 64 pixels in width and 32 pixels in height.
...
0
votes
1answer
109 views
Calcul new coords of camera after a 90 degres rotation in a isometric 2D projection
I made a 2D isometric renderer. It works fine but now I want to show my scene from 4 differents point of view (NO NW SE SW) but, on a 90° rotation, my camera cannot keep the center of my scene on ...
2
votes
1answer
120 views
How might I convert a 2.5D isometric cube texture to textures usable in 3D?
I would like to programmatically convert a 2.5D isometric cube texture to a texture/textures that can be used on a 3D cube. What is a good way to do this? I will be rendering the cube using Direct3D.
1
vote
1answer
345 views
XNA C# creating an Isometric view with 3D models
I'm trying to make a simple isometric game engine but have some problems with the camera. When i have it like this i can see my model from the front. But i want to see it from an isometric ...
0
votes
1answer
89 views
What is the best way to store an isometric grid in memory?
As a learning experience, I'm trying to make a turn based strategy game with Java+ObenGL, and I started with squares as terrain tiles. Now I decided I'd rather have an isometric perspective and ever ...
0
votes
1answer
82 views
iOS - Isometric grid image problems
I have a myriad of UIImageViews that act as 'tiles' on a map. They align up next to one another to form a grid of images. The layer of each UIImageView is added as a sublayer of a UIView.
Ordinarily, ...
0
votes
1answer
241 views
Determining draw order for isometric games and irregular shapes (Java)
I'm having some unique trouble determining the order in which objects should be rendered, particularly in the case of when a player is behind a wall. I'll try and explain thoroughly, so prepare for a ...
0
votes
1answer
101 views
Determine which sprite the mouse is over
I'm attempting to determine which sprite a mouse is over in an isometric 2D game. I think my best bet is to draw each sprite a different color into a separate renderTarget2D and turn it into a ...
2
votes
2answers
173 views
Render isometric text in 2D
How can I render text in the form of an isometric projection? I understand the principle but I'm not sure how to actually transform a SpriteFont programmatically to do this.
Example of what I mean:
...
7
votes
3answers
358 views
Drawing isometric walls
I'm having some trouble with isometric walls.
I'm drawing isometric floor tiles using the back to front rendering method, and it works fine. I also keep my floor tiles lined up properly in a nice ...
0
votes
0answers
162 views
How do I accomplish a 2D Isometric Projectile (3D) Rotation Effect
I am working on an isometric 2d game and one aspect of it will be units that shoot projectiles. If the projectiles are circular its not to bad. Just position the projectile in isometric space. But ...
3
votes
1answer
95 views
Finding the footprint of an isometric entity
I'm working on making a 2D isometric engine in Java because I like suffering, I guess. Anyways, I'm getting into collision detection and I've hit a bit of a problem.
Characters in-game are not ...
0
votes
0answers
208 views
Converting “flat map” to isometric map and back
I am trying to make an isometric game. Right now, I have my map data be stored in 2d arrays, with every odd row being the offset row. I am also trying to convert this map back into a "flat map", id ...
3
votes
0answers
193 views
How to transition an isometric object from one tile to another without overlapping other tiles
I've created an isometric environment, all in Javascript and HTML5 (2D Canvas), which mostly works fine. The problem I'm facing is to do with having different height tiles and then sorting the indexes ...
1
vote
3answers
198 views
Isometric Tile Selection
I'm not all that good with Maths, so i was hoping some of you guys could help?
I'm trying to make a function to convert mouse coordiantes into a particular tile in an isometric view.
It won't let me ...
0
votes
0answers
155 views
Isometric tile size
I have a question about isometric tile size,
I would like to know if it's possible to define an isometric size ( 2x2, 4x2, 4x4, ... )
from an image.
I have already developed a little class who do ...
0
votes
1answer
135 views
Calculate rotation needed to transform plane
I'm currently trying to render a polygon mesh in isometric (html5 canvas 2d context).
My work is almost done except I cannot find the right calculation/algorithm to find the plane rotation.
In ...
0
votes
2answers
261 views
Render 3D model orthographically in Python
I want to write a tool in Python that will help me create isometric tiles from 3D-models. You see, I'm not a very proficient artist and free 3D-models are plentisome, and creating something like a ...
1
vote
1answer
314 views
Isometric Tile Generation
So my issue is, usually when I generate my maps I'd use the following:
for(int x = 0; x < width; x++) {
for(int y = 0; y < height; y++) {
tiles.add(new Tile(x, y));
}
}
You can ...
0
votes
0answers
418 views
KineticJS: mousedown/click not working when mouseover is set [closed]
Im working at HTML5 isometric engine for a game. Im in middle-stage and I've encountered big problem. If i bind mouseover and mouseleave then mousedown/click/mouseup events are not working. See ...
2
votes
1answer
144 views
Preventing Overdraw in Isometric Art
Background:
I am creating a game that presents the world in an isometric perspective, achieved by drawing isometric tiles. My current implementation is naive, using the painter's method, drawing ...
1
vote
0answers
160 views
Checking if an object is inside bounds of an isometric tile/chunk
How would I check if an object is inside the bounds of an isometric chunk? for example I have a player and I want to check if its inside the bounds of this isometric chunk.
I draw the isometric ...
2
votes
1answer
415 views
Rendering an isometric grid
I'm making a map editor for an isometric game, and I'm a bit stuck on rendering an isometric guide grid (a grid that shows where objects will be placed). That is, I need to draw lines across a ...
2
votes
1answer
692 views
Isometric cube projection in html canvas
How do you do the isometric cube in canvas 2d? I've followed True Isometric Projection with HTML5 Canvas to get the top of the cube, but how do you do the left and right sides?
Note: I want to use ...
2
votes
1answer
785 views
Smooth drag scrolling of an Isometric map - Html5
I have implemented a basic Isometric tile engine that can be explored by dragging the map with the mouse. Please see the fiddle below and drag away:
http://jsfiddle.net/kHydg/14/
The code broken ...
0
votes
2answers
2k views
Use TMX file with AndEngine
I have an isometric .TMX file created with "Tiled", I'm using AndEngine GLES1. I want to use it as a background or map. I also want to have my "players" movement tied to the tiles if possible. I know ...
2
votes
1answer
164 views
How to receive isometric indexes of cells from coordinate of mouse?
I draw isometric map with tile 64x32:
const Offset = 160;
int X, Y;
for (int a=0; a < 6; a++)
for (int b=0; b < 6; b++) {
X = a * 32 - b * 32 + Offset;
Y = a * 16 + b * 16;
DrawTile(X, Y, ...
1
vote
0answers
2k views
JS/HTML5 game engine for isometric game, “simcity” like [closed]
I need to select a game engine/library to jumpstart a project of "simcity" like game targeted for browsers+facebook. So far i found two engines that look promising (examples don't cause rendering ...
2
votes
2answers
66 views
As3Iso: Why use a secondary display list?
I am porting as3iso to use with my abstract display list but I fail to see the reason why the author decided to use a secondary display list (the node hierarchy). I cannot think of the necessity of ...
0
votes
2answers
311 views
HTML5 Canvas Isometric map depth sorting
I'm have problem with Isometric. I'm don't know how to name this "problem", but I'm show you some sceen what I get and what I'm need to get.
My code now drawing something like: ...
7
votes
2answers
451 views
Whats the best way to implement and design walls in an isometric tile game?
I have looked everywhere for a good answer to this but to no availibility. The game I am thinking about where this solution would be applied, is a game where tiles can be changed, sort of an editor. ...
0
votes
0answers
253 views
Isometric depth sorting cityville like
i'm currently building an as3 isometric editor, and I'm having problem with depth sorting.
Here is my problem, depth sorting work fine when I work with 1x1 tile, but if I try to add some rectangle ...
2
votes
1answer
301 views
Z axis in Isometric tilemap
I'm experimenting with Isometric Tile Map's in JavaScript and HTML5 Canvas.
I'm storing Tile Map data in JavaScript 2D Array.
// 0 - Grass
// 1 - Dirt
// ...
var mapData = [
[0, 0, 0, 0, 0],
...
1
vote
1answer
519 views
How should I generate an isometric image of a Minecraft skin in PHP?
I'm trying to generate 3D isometric views of players' heads, but I'm not sure what kind of support PHP has for this type of operation, or of any external libraries that may be better suited.
...
2
votes
1answer
736 views
Isometric depth sorting issue with big objects
I'm currently building an as3 isometric game, but I'm having a lot of problem with depth sorting. I've searched for a solution, but didn't found anything that match my problem (rectangle objects).
...
3
votes
1answer
244 views
What's the math behind transforming mouse location for games with diamond-shaped tiles?
I am developing a axonometric (isometric, but with an angled view) tile-based game.
I have the tile system working just fine, and now i'm moving on to the input issues.
The tiles are not visually ...
0
votes
0answers
389 views
Drawing Isometric game world with rotated objects
Drawing isometric world, where objects are not rotated is quite straightforward and is discussed here:
Drawing Isometric game worlds
Simple method, is to take ground collision rectangle of every ...
1
vote
1answer
577 views
WebGL Isometric projection
Alright- going nuts here. I'm doing some WebGL and I'm trying to make an isometric cube. I don't want to use Three.js. I want to first understand what is going wrong in my code. I've been researching ...
2
votes
1answer
298 views
How to convert screen position to isometric position
How to convert screen position(X,Y) to isometric position?
I am have code who convert isometric position to the screen position here: http://jsfiddle.net/CR3JS/
This formula axis is: ...
2
votes
2answers
477 views
Isometry, incorrect coordinates from mouse pos->tile coords formula
EDIT
Adjusted all the algorithms posted. It's now working NEARLY flawlessly. It's just the left-most 9 tiles that it fails on (A picture is at the bottom). It selects the completely wrong ...
0
votes
2answers
654 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 ...
1
vote
0answers
230 views
How to place a tile by tapping on a isometric tiled map which uses CCLayerPanZoom class
I have a tiled map. I use cocos2D. The isometric map has an CCLayerPanZoom. For Zooming and scrolling. Now I want to add a tile at the position where I pressed it. It does not work. It is inserting ...
0
votes
1answer
391 views
Isometric world scrolling Java
So I created an isometric world and I made that it scrolls the world when you use the W A S D keys. Now what I did is actually move all the world according to the player's movement and not the player. ...
0
votes
2answers
273 views
What is the connection between an isometric angle and scale?
I am trying to work out an isometric projection matrix for a custom angle. In the engine I'm using there's a projection matrix defined like so:
var project:Matrix = new Matrix();
projection.rotate(45 ...
0
votes
0answers
353 views
Isometric graphics Java
While drawing graphics in 2D, how can I handle the depth of a picture in the frame? For example the ground would be depth -1 and the player depth 0?
And another question how do I achieve this kind of ...
1
vote
1answer
339 views
Isometric graphics depth handling Java
While drawing graphics in 2D, how can I handle the depth of a picture in the frame? For example the ground would be depth -1 and the player depth 0?
And another question how do I achieve this kind of ...