PDA

View Full Version : Avatar walks too slow


Fabio_TUe
10-14-2013, 07:43 AM
Hello,
I've been trying to make a avatar walk inside of a room, to make the avatar look like a normal person I used the function setscale, which makes it bigger.

The problem is when I use vizact.walkto, the avatar walks really slow. The answer to why is walks like that its easy, I made the avatar look bigger but when it comes to move it moves as if it had his original size. How do I make the avatar walk faster like a normal person??

thanks in advance

Jeff
10-14-2013, 02:57 PM
Is the room scaled to the correct size? You can quickly check the dimensions of the room's bounding box by loading it in Inspector.

You can use the walkSpeed argument to change the speed:
vizact.walkTo(pos=[0,0,15],walkSpeed=3)

Fabio_TUe
10-21-2013, 05:35 AM
yes, thank you, it works