OndrejNepozitek / Edgar-Unity

Unity Procedural Level Generator
https://ondrejnepozitek.github.io/Edgar-Unity/docs/introduction
MIT License
817 stars 70 forks source link

Different grids #86

Closed pvalium closed 3 years ago

pvalium commented 3 years ago

Is there any way to have 2 grids with several sizes inside a room? For ex, I have a Tilemap with floor, and grid size is 1,1,1(128px), but I want a tilemap floor2, which is a second layer with decorations, and this tiles are size 0.25 (32px)

OndrejNepozitek commented 3 years ago

Unfortunately, that is currently not possible. I don't even know how I would implement something like that. I expect that if I retrieve tiles from multiple tilemaps but in the same position, I will get tiles that are displayed in the same position on the screen. If there were multiple grids, none of that would work.

If you have any idea on how could that be implemented, let me know.

pvalium commented 3 years ago

Ok, I'll search other solution Thank you