Disabling Collisions

Blitz3D Forums/Blitz3D Programming/Disabling Collisions

Boiled Sweets(Posted 2004) [#1]
Is there a way once collisions are set up to disable them?


Shambler(Posted 2004) [#2]
You can use ClearCollisions or if you just want to stop collisions for a certain entity change its EntityType.


Neo Genesis10(Posted 2004) [#3]
ClearCollisions will wipe any and all collisions commands so you can start afresh. If you want to ignore a collision use ResetEntity. ResetEntity clears all collision information for that entity. If performed before UpdateWorld the object will be able to move through 'solid' items.