2D Toolkit Forum
2D Toolkit => Support => Topic started by: stevexu on December 02, 2013, 03:25:23 am
-
I have a tmx map with width = 860 .height = 80 ,partitionSizeX = 8,partitionSizeY = 8 .When I import to unity, it cost me about 20+ minutes. :'(
After imported, I click edit button to edit the tilemap in unity, it also take a long long time .
:'(
It make me crazy!
-
Why is your partition size so low?
-
Most of the box size is n*8 , so there is no gap between two box. So I set partition size to 8.
-
You should test with a larger partition size (32x32) if it improves performance. 8x8 creates a load of game objects per layer, loads of renderers and meshes, etc. Thats about 1080 of everything there, assuming you have one layer, add another 1080 per layer of things in there.