WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rating: Thread Rating: 2 votes, 5.00 average. Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 03-12-2015, 07:08 AM
armo armo is offline
Member
 
Join Date: Mar 2014
Posts: 21
problems with walking women avatars

Hi there,


I am really having a hard time trying to make some women avatars walk. The avatars come from the vizard Complete characters set.

Specifically, the avatar has these strange s-shaped arms visible in the attached picture "strange walking woman.jpg". Here is the code

Code:
import viz
import vizact
import viztask

def world():
	global root
	view = viz.MainView

	viz.MainView.getHeadLight().disable()
	#add sun-like directional light

	l = viz.addLight()
	l.position(0, 1, 0, 0) #sets light direction
	l.intensity(0.9)

	l2 = viz.addLight()
	l2.position(1, 0, 1, 0) #sets light direction
	l2.intensity(0.8)

	l3 = viz.addLight()
	l3.position(-1, 0, -1, 0) #sets light direction
	l3.intensity(0.6)	

	l4 = viz.addLight()
	l4.position(0, 0, 1, 0) #sets light direction
	l4.intensity(1)

	l5 = viz.addLight()
	l5.position(0, -1, -1, 0) #sets light direction
	l5.intensity(0.8)

	#root encapsulates all world geometry
	root = viz.addGroup()
world()

viz.go()
#viz.mouse(viz.OFF)

av_trial = viz.add('avatars_happiness/sportive03_f_highpoly/sportive03_f_highpoly.cfg', pos=( 0, 0, 3 ), euler=(180,0,0))

viz.MainView.setPosition( 0, 1.6, 0 )


# ACTIONS

# walk action
WALK = vizact.walkTo( pos=[ 0, 0, 0 ], walkSpeed = 0.5, walkAnim=44)
	
def move(av):
	'''the avatar walks'''
	av.addAction(WALK)
	
# some callbacks to start animation
def HandleKeyboard(key): 
	
	if key == 'w':
		move(av_trial)
		
viz.callback(viz.KEYDOWN_EVENT, HandleKeyboard)
I am seeing this strange effect on more than one women avatars


However, if I try to substitute the WALK variable with this:

Code:
WALK = vizact.walkTo( pos=[ 0, 0, 0 ], walkSpeed = 0.5, walkAnim=viz.AUTO_COMPUTE, verb = 'walk' )
I get instead an even stranger result visible in the attached picture "walkAnim_vizAUTO_COMPUTE.jpg"

but what really puzzle me is that everything works fine with male avatars


Any suggestions?


best regards,
armo
Attached Thumbnails
Click image for larger version

Name:	strange walking_woman.jpg
Views:	1607
Size:	38.7 KB
ID:	684   Click image for larger version

Name:	walkAnim_vizAUTO_COMPUTE.jpg
Views:	1601
Size:	40.8 KB
ID:	683  

Last edited by armo; 03-12-2015 at 07:10 AM.
Reply With Quote
 

Tags
animation, avatar, walkto

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Problems with import of fbx avatars into vizard makinate Vizard 1 12-10-2014 02:49 PM
Problems with avatars facial expressions exported with Cal3D armo Vizard 4 08-28-2014 10:57 AM
How to make avatars to follow terrain while walking? yyang Vizard 1 08-04-2008 02:54 PM
avatars dig Vizard 4 09-20-2007 03:29 PM
Walking avatars --> collision detection? sjroorda Vizard 3 10-13-2005 04:47 AM


All times are GMT -7. The time now is 06:45 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC