Originally Posted by
Cursed
This rocks....
Just a question but is this really possible?

I mean with the collision
Link

While making the feature for Infinity i made some stuff like this ingame, however its still quite hard to get it working due to the structure of the terrain. (and yes Collision works!!)
Now the main issue with this is that you need to reload the terrain when you have made a change, this takes less the 1 sec but it still won't be as smooth as doing it in NoggIT.
The other problem is the programming needed to do it.
The terrain have 9x9 outer rows with 8x8 inner rows
So its quite easy to find the offset like in that video from Malu.
But then you need to find the next ones..
An example:
Code:
x x x x x x x x x
y y y y y y y y
x x x x x x x x x
y y y y y y y y
x x x 3 3 3 x x x
y y 3 2 2 3 y y
x x 3 2 1 2 3 x x
y y 3 2 2 3 y y
x x x 3 3 3 x x x
y y y y y y y y
x x x x x x x x x
y y y y y y y y
x x x x x x x x x
Now if the mouse is over the Edge of a Chrunk i need to add thoes too.