animation from off screen?

Hello.

I put an animation model which is falling blocks.
As I want to show blocks falling from the sky,
I put blocks far away. But position itself is inside of the screen.

So it seems panda3d just culled out the models.
Is there any way to block that behavior of panda3d?

Thanks

Sure.

blocks.node().setBounds(OmniBoundingVolume())
blocks.node().setFinal(True)

David