Rojohound can you create a an Example Capx of this example you just gave me !!!
Thank you!!!
just an example of one line at lesat with no sprite or anything at all>>
The original mode7 topic I thought had info on it.
Anyways the gist of positioning stuff is:
// get position relative to camera
xx = (x-cam.x)* cos(-cam.angle) - (y-cam.y)* sin(-cam.angle)
yy = 200
zz = (x-cam.x)* sin(-cam.angle) + (y-cam.y)* cos(-cam.angle)
screenx = xx/zz + xcenterScreen
screeny = yy/zz + ycenterScreen
if zz<1
then hide object
else show object