collide help

Blitz3D Forums/Blitz3D Programming/collide help

Jerome Squalor(Posted 2007) [#1]



can someone tell me why the collisions on this thing don't work.


Stevie G(Posted 2007) [#2]
If ( ImagesOverlap( player , x# - xv# , y# , block , bx , by ) ) = False
	
		x# = x# + -xv#
	
	EndIf


Note the -xv in the imagesoverlap function.

Stevie