2-sided textures, 3dsMax -> Panda

I’m using 3dsMax to model trees via this tutorial: andyzibits.com/tut_low_poly_trees.html

I have my textures set to two-sided and I have backface culling turned off, but when I export to Panda (egg) the panels with the partially transparent leaf texture don’t show from the back. Is there either an option I can use to enable two-sided textures on my panels or else some clever trick I should be using instead? Thanks for the help.

You can call this in your code:

model.setTwoSided(True)

That worked perfectly, thanks.