![]() |
|
#3
|
|||
|
|||
|
I pasted my code here. The guy is supposedly running around making a big circle, but he only stretches his arms while sliding around.
Code:
import viz
import math
iwan = []
for i in range(20):
n = [math.sin(i)*1, 0, math.cos(i)+1]
iwan.append(n)
print iwan
male = viz.add('male.cfg')
male.idlepose(12) #Use animation 12 as the idle pose
for each in iwan:
print "male.act(vizact.walkto(",each,"))"
male.addAction(vizact.walkto(each, 1.5, 90, 2)) # 2=walking anim
if __name__ == "__main__":
viz.go()
Thank you very much. |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Animation Tracks.... | k_iwan | Vizard | 2 | 03-26-2007 05:52 PM |
| Jumpy animation | Elizabeth S | Vizard | 1 | 11-08-2006 02:11 PM |
| animation sequence | pkhoosh | Vizard | 2 | 01-23-2006 08:03 AM |
| avatar animation problems | jrodman | Vizard | 1 | 01-18-2006 09:12 AM |
| Making an avatar speak while performing an idling animation | vr_boyko | Vizard | 1 | 10-05-2004 04:23 PM |