@Ghost Games
wrong section ...you had better post it in newcomer Dbpro corners.
I'm not completly sure what your need , could be something like this ??
autocam off
sync on
make matrix 1,50,50,20,20
make object box 1,5,5,5
do
ink rgb(0,255,0),0
set cursor 0,0
print "Use up/dow to move object"
print "Use left/right to rotate camera around object"
`positioning camera in object position x,y,z
position camera object position x(1),0,object position z(1)
`moving camera to get new x,z
move camera -20
x#=camera position x()
z#=camera position z()
`reseting camera position
move camera 20
`positioning camera in saved coords x,z + the height we need
position camera x#,15,z#
`forcing camera face to object
point camera object position x(1),object position y(1),object position z(1)
`rotating camera with cursor or ant other KEY
yrotate camera g#
`object movements and camera rotation
if upkey() then move object 1,0.01
if downkey() then move object 1,-0.01
if leftkey() then g#=g#-0.5
if rightkey() then g#=g#+0.5
sync
loop
Edited. I jumped the gun again answering without being sure some one did....Sorry Mr Valentine.
Cheers.
I'm not a grumpy grandpa