Game Development Community

Acheiving a height

by GLKnight · in Artist Corner · 08/10/2008 (4:49 pm) · 2 replies

How do u know how high your character is, when your about to export? The character that i exported into Emaga6 is fairly short...I want to avoid this. I've tried sizing the model is TGE, but it doesnt save. Could someone tell me how to modify the hieght of an Exisiting character?

#1
08/10/2008 (4:59 pm)
I assume that you could just scale it in whatever program you are using, that's always worked for me.

If you wanted to do it in code, find where your player is being made (usually in game.cs, server side) and add this liine of code (%player is the handle on your player)
%player.setScale(%yourScaleX SPC %yourScaleY SPC %yourScaleZ);
#2
08/10/2008 (10:03 pm)
I was also trying this and scaled my player in code some months ago and I found some problems, that the player couldn't walk onto any object like stairs or any small object where the player can normally walk onto, so I think scaling the player in the modeling package, that works good.