Thread: mainview
View Single Post
  #1  
Old 02-18-2009, 12:51 AM
Moh200jo Moh200jo is offline
Member
 
Join Date: Feb 2009
Posts: 99
mainview

I am trying to make the mainview to keep its moving with the avatar’s moving and speeds as well, I tried with the following simple code.
Code:
import viz


viz.go()
# add room
room = viz.add('court.ive')

# add subject
female= viz.add('vcc_female.cfg')
female.setPosition([0,0,0])
female.state(2)
walk=vizact.move(0,0,5,5)
female.addAction(walk)
viz.MainView.getPosition(female.getPosition())
print female.getPosition





But does not working
Reply With Quote