Quick engine collisions
Hi how can i disable collisions between 2 objects with quick engine
Hi how can i disable collisions between 2 objects with quick engine
Set the solid field of the object obtained from Quick.addSprite() to 0 . This will remove the collision between all other sprites and the one that has solid = 0 .
test1 = Quick.addSprite("hero")
test1.solid = 0
test2 = Quick.addSprite("hero")
test2.solid = 0