I cant find the post but i saved the code snippet
`standard setup
Sync on : sync rate 5 : autocam off
`*******************************************************************************************
`make a simple object
make object plain 1, 100, 100
`convert
make mesh from object 1, 1
make memblock from mesh 1, 1
`position the camera
position camera 0, 0.0, 0.0, -200.0
`view loop
do
`randomly move vertice all over the place
write memblock float 1, 12, rnd(100) :`X
write memblock float 1, 16, rnd(120) :`Y
write memblock float 1, 20, rnd(105) :`Z
`make object
delete object 1
delete mesh 1
make mesh from memblock 1, 1
make object 1, 1, 0
`mousemove
if mouseclick()=1 then move camera 0, 0.5
if mouseclick()=2 then move camera 0, -0.5
`mouselook
yrotate camera 0, camera angle y(0)+ mousemovex()
xrotate camera 0, camera angle x(0)+ mousemovey()
sync
loop