Tagged Questions
5
votes
2answers
154 views
Calculate new coords of camera after a 90 degree rotation in an isometric 2D projection
I made a 2D isometric renderer. It works fine but now I want to show my scene from 4 different points of view (NE NW SE SW) but, on a 90° rotation, my camera cannot keep the center of my scene on ...
0
votes
0answers
94 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:
projection.rotate(45 * (Math.PI / 180) );
scale = ...
1
vote
2answers
602 views
How would I achieve diablo like 2D isometric projection?
I am in the process of coming up with an idea for a game, and I would like it to be isometric like Diablo. The problem is I have no idea how it achieves the effect of height like in the following ...
13
votes
3answers
1k views
Faking isometric graphics in a 2D space game
First off, I know exactly what my drawing problem is, and I have various ideas on how to approach solving it. I am here to figure out how to adjust which frame is drawn so that the isometric ...
3
votes
2answers
522 views
XNA - Non perspective projection?
For a section of my game, instead of having a perspective projection, i would like to display an isometric view of an object.
So i don't want things to appear smaller if in a distance, etc.
...