Thread: Collision Help
View Single Post
  #1  
Old 04-17-2013, 04:16 AM
uncleseano uncleseano is offline
Member
 
Join Date: Apr 2013
Posts: 1
Collision Help

Heya I need help trying to get a ball to collide properly with a box and print out a generic statement. Need help badly thanks

boxes = []
balls = []

for i in range(GRID_WIDTH):
boxes.append([])
for j in range(GRID_HEIGHT):
#Add a box model
box = viz.add('box.wrl',cache=viz.CACHE_CLONE)
#Use the boxes bounding box for collisions
box.collideBox()
#Add the box to the list
boxes[i].append(box)

for x in range(MAX_BALLS):
#Add a ball model
ball = viz.add('ball.wrl',scale=(3,3,3),cache=viz.CACHE_C LONE)
#The balls collision will be represented by the bounding sphere of the ball
ball.collideSphere()
ball.enable( viz.COLLIDE_NOTIFY )
#Add the body to the list
balls.append(ball)

#Create a generator this will loop through the balls
nextBall = viz.cycle(balls)

breakerBox = viz.add('box.wrl')
breakerBox.collideBox()
breakerBox.setCenter(0,0,-2)

greenBox = viz.add('boxee.wrl')
greenBox.collideBox()
#greenBox.enable( viz.COLLIDE_NOTIFY )
greenBox.setPosition(2,0,-1)

#This function is called when a collision occurs
def ballBoxCollision(e):
if ball.intersect == greenBox.intersect:
print 'collision'
#if e.ball in balls == ground:

viz.callback( viz.COLLIDE_BEGIN_EVENT, ballBoxCollision )
Reply With Quote