dont want to double post so i have another question relating to acceleration
i think i have the right code (i found it in another post and edited it a little)
anyway the camera is programmed to point at the object so i can keep track of where the object is. however, when i press the key to trigger the objects movement the camera moves as though the object was moving but the object doesnt move (the camera rotates of into space)
heres the code
make object sphere 1,1
make matrix 1, 100, 100, 50, 50
accel#=0.01
speed#=1.00
pos#=0.00
x1# = object position x(1)
y1# = object position y(1)
z1# = object position z(1)
do
point camera x1#, y1#, z1#
if upkey()
accel#=accel#+0.001
speed#=speed#+accel#
y1#=pos#-speed#
endif
loop
ALIVE IN THE SUPERUNKNOWN!