http://www.amiaworld...c/tileblock.zip
There you go!
Looking at it now, actually and you can easily make other sizes out of this one. Open the .mdl and the .pwk in a text editor. In both files you find these lines. These define a square the size of a tile.
verts 4
-5.0 -5.0 0.0
5.0 -5.0 0.0
-5.0 5.0 0.0
5.0 5.0 0.0
The first number on each line is the x-coordinate, the second one the y-coordinate, and you're counting from the center of the square. If you want a blocker of 1 x 2 tiles, you could do this:
verts 4
-10.0 -5.0 0.0
10.0 -5.0 0.0
-10.0 5.0 0.0
10.0 5.0 0.0
Don't forget to make the same changes in both the .mdl and the .pwk file. Good luck with tinkering!
Modifié par Just a ghost, 17 septembre 2012 - 07:27 .