Game Development Community

About Player in T3D

by Nabarro · in Torque 3D Professional · 02/28/2011 (7:22 pm) · 3 replies

Hello, I need the player(female) to wear high-heeled shoes, and she will looks higher than others without wearing high-heeled shoes. How to do this?

Because the actions for the two persons are the same, is it ok to make the bounding box of the person who is wearing high-heeled shoes higher? Or are there other ways for doing this? Thanks for any suggestions.

#1
02/28/2011 (9:15 pm)
The bounding box should be sized such that at no time does the player model extend beyond it. You can make them all the same size, but if you do they should all be sized for the largest anticipated character model.

Unless that's changed - but I'm pretty sure it's still right.
#2
03/01/2011 (11:12 am)
You have to resize the bounding box on the fly.
Take a look at how setPose() works.
You need to provide a console method with a similar functionality.
#3
03/01/2011 (6:48 pm)
Thanks for your suggestions.