Anyone Know?
by Temasek Polytechnic Tp8 · in Torque Game Engine · 07/19/2006 (7:33 pm) · 2 replies
PlayerView::setModel located at which file of the engine
About the author
#2
{
argc;
object->setPlayerModel( argv[2], argv[3] );
}
if i wanna add animation for this command.... what should i write
ConsoleMethod( GuiPlayerView, setModel, void, 4, 4, "playerView.setModel( raceGender, skin, animation )" )
{
argc;
object->setPlayerModel( argv[2], argv[3] , argv[4]);
}
07/19/2006 (7:57 pm)
ConsoleMethod( GuiPlayerView, setModel, void, 4, 4, "playerView.setModel( raceGender, skin )" ){
argc;
object->setPlayerModel( argv[2], argv[3] );
}
if i wanna add animation for this command.... what should i write
ConsoleMethod( GuiPlayerView, setModel, void, 4, 4, "playerView.setModel( raceGender, skin, animation )" )
{
argc;
object->setPlayerModel( argv[2], argv[3] , argv[4]);
}
Torque Owner Chris Byars
Ion Productions