What code can i put in to make the camera follow the object for staffing and turning
for turning ive tried SET CAMERA TO FOLLOW but it didnt work out
what code can i use to make it work
also i need the camera behind and above the left shoulder
xPos=0
yPos=0
zPos=0
load object "cyborg.3ds",1
position object 1,xPos,yPos,zPos
make matrix 2,2000,2000,10,10
make camera 1
position camera 1,(xPos-25),(yPos+25),(zPos-100)
do
if inkey$()="w" or inkey$()="W" then move object 1,1:move camera 1,1
if inkey$()="s" or inkey$()="S" then move object 1,-1:move camera 1,-1
if inkey$()="a" or inkey$()="A" then move object left 1,1
if inkey$()="d" or inkey$()="D" then move object right 1,1
if inkey$()="l" or inkey$()="L" then turn object right 1,1:
if inkey$()="j" or inkey$()="J" then turn object left 1,1:
loop