View Single Post
  #1  
Old 09-09-2014, 04:53 AM
Notch Notch is offline
Member
 
Join Date: Jan 2014
Posts: 15
Collision detection without stopping view

I'd like to detect collisions, but don't want collisions to prevent the view from moving forwards. In other words, I'd like the player to pass through objects, but to be able to register the fact that an object was passed through.

Adding the following line to my code allows me to register collisions, but unfortunately it also means that the player can no longer pass through objects.

Code:
viz.collision(viz.ON)
How do I do this?
Reply With Quote