![]() |
|
|
|
#1
|
|||
|
|||
|
I found the avatars to be a bit dark when disabling the head light and using an overhead light. I fixed this by increasing their emissive color
Code:
import viz
viz.go()
viz.move([0, 0, -1])
viz.MainView.getHeadLight().disable()
l = viz.addLight()
l.position(0,1,-.2,0)
avatar = viz.add('vcc_female.cfg', euler=[180,0,0])
avatar.state(1)
avatar.color([1]*3)
avatar.ambient([.6]*3)
avatar.emissive([.2]*3)
avatar.specular(0,0,0)
__________________
Paul Elliott WorldViz LLC |
|
#2
|
|||
|
|||
|
im having this issues, and i solved with this
avatar.color(1,1,1) avatar.ambient(0.6,0.6,0.6) avatar.emissive(0,0,0) avatar.specular(0,0,0) but is there a way to set this on 3ds max to just import the model in vizard without making a change to the avatar?, just like the vcc_male that just you have to import it and thats it |
|
#3
|
|||
|
|||
|
Quote:
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|