HI I have added this bit of code to my game so that the players score increases when they find a pickup.
make object sphere 9,1
position object 9, 0,5,10
if object collision (9,1)
hide object 9
score = score+1
endif
The thing is it is only the camera that moves around the level giving a first person feel to it. So my camera does not have a object number and so won't react to "if object collision (9,1)"
is there any way to get this collision to work with the camera?
or maybe even how to assign the camera with an object number?
Thanks