>
> Im pretty sure that DF uses some sort of layers, so you could do that as well instead of layouts. And you just hide and show layers depending on what level you are on.
>
Thanks for the reply
I've tried to make the game using layers but there is another problem.
If I create an object eg. kitchen (solid object) to level 1, the dwarves who are at level 0 (that is, one level up) does not pass through the same area that is occupied by the object kitchen on level 1.
Should it object kitchen (solid) was an obstacle to the path of the dwarves only in layer 1 (level 1).
It's possible ?
Yeah, unfortunately this is not possible, because you are going to run into the single collision mesh problem. Which is not something you can fix, as its part of C2, but its a known problem and pretty sure it will be fixed in C3, because it would cause a riot if it ain't, I think
This is an old post regarding this problem, which ended in a bug report and in the single collision mesh explanation. But its some time since I used the path finding behaviour, but guess the problem I illustrate here is the same you are facing.
https://www.scirra.com/forum/viewtopic.php?t=117025
And in general or as an advise, if you are planning on using the path finding behaviour in its current state, you really have to design your game around its limitation, meaning don't begin by making menus, nice graphics etc. Test the path finding and that it can do exactly what you need it to, because if you think you can "design" your way out of it, its simply not possible, so that my best advice, make sure that it can do exactly what you need before starting a project or you will most likely end up dropping it, or having to design your game around it later on, so might as well do it from the start . But its the main reason I personally don't use it, because it simply can't do what I want it to.