View Single Post
  #2  
Old 12-21-2016, 04:02 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Try the following. Does this work the way you want in Vizard?

Code:
import viz
viz.go()	

viz.clearcolor(viz.SLATE)

import vizfx
board = vizfx.addChild('chessboard.OSGB')

# Disable ambient light 
vizfx.setAmbientColor(viz.BLACK)

import vizcam
vizcam.PivotNavigate(distance=1)
Reply With Quote