Thread: Maya -> VRML
View Single Post
  #2  
Old 10-02-2003, 07:29 AM
tobin tobin is offline
WorldViz Team Member
 
Join Date: Feb 2003
Posts: 251
I'm not familliar with the problems you're talking about, but if you could reply and attach a small Maya file along with its exported VRML translation I'd be happy to take a look at it.

You might try exporting as OBJ instead of VRML from Maya and see if the problems you are experiencing change using the OBJ loader instead.

RE lighting, you may prefer to have Vizard apply textures in DECAL mode rather than the default of MODULATE (which applies the lighting models). To switch to DECAL mode, issue:

Code:
myObject = viz.add('theObject.obj')
myObject.appearance(viz.DECAL)
Reply With Quote