Thread: Tree object
View Single Post
  #2  
Old 09-27-2011, 11:09 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Try enabling viz.SAMPLE_ALPHA_TO_COVERAGE on the tree model. You will need to enable multisampling in order for this to work.
Code:
viz.setMultiSample(8)
viz.go()

model = viz.add('tree.osgb')
model.enable(viz.SAMPLE_ALPHA_TO_COVERAGE)
Reply With Quote