Hello,
What I have Currently Working
So I have:
- orthographic render of a isometric scene as a 2D texture.
- I also have a character which I have rendered 8 different directions out
- I have the player able to move around the world using an AStar path finding grid
The Problem
The AStar grid is not consistent with the camera's projection matrix. See below (red dots are AStar navigable nodes:
( https://imgur.com/a/Baplqpl.png )
- The red boxes are navigation nodes
- The background and character are (more or less) just 2D textures with a normal map.
- Notice that up/down/left/right/diagonal with respect to the game's surface is different than it is with respect to the navigation nodes.
As you can see, the AStar navigation nodes allow the player to move in horizontal/vertical/diagonal directions which are not consistent with the camera's projection of the surface of the world.
I have rendered 8 different directions of movement for the character, but those are only for diagonal / vertical/ horizontal movements in the world's projection.
everything working fine with the AStar path finder, but the problem is that the astar navigation nodes aren't consistent with the camera projection. Ie, it is a 2d basic grid, but it is not "parallel" to the surface/ground of the isometric world. Which results in the character walking slightly off from how they look like they are walking (for example, I only want the character to be able to move at even 45 degree angles because those are the directions rendered out of the character moving.)
Attempted Approach
I need to produce an Astar map that is consistent with the surface projection. So to do this, I tried to export the camera's projection matrix from blender and apply that onto the GridMap to move the nodes such that they are consistent with camera projection. However I have not found a way to do this successfully.