![]() |
|
#6
|
|||
|
|||
|
Hi,
When you want the ball to appear behind the net you would do the following: Code:
#Ball behind net net.disable(viz.DEPTH_TEST) net.draworder(16) ball.draworder(15) Code:
#Ball front net net.enable(viz.DEPTH_TEST) net.draworder(16) ball.draworder(17) Out of curiosity, why do you want the ball to be attached to the screen? |
|
|