RPG isometric view games
elmkom
Member Posts: 4
Hi Is it posible to create RPG games like the old final fantasy games where one actor walks infront or behind another depending on their Y position. That is the fake 3d isometric view.
Comments
I think that would work.
Create two copies of each actor, one above and one below.
...or...
Create a background and put a copy of the images on top.
When the character's Y position is below the layered image, the image goes invisible.
The hero has this...
Constrain attribute Hero-Y to self.position.Y
The props have this...
If Hero-Y is > self.position.Y
Then alpha color = 1
Otherwise alpha color = 0
If you don't know about rules and attributes, The Unofficial GameSalad Textbook might be helpful to you.