deathbravo
-
Posts
49 -
Joined
-
Last visited
Content Type
Profiles
Forums
Blogs
Articles
Docs
Gallery
Posts posted by deathbravo
-
-
can you come back here later to tell me what you find as alternative of T3D?
I was looking for opensouce 3d game engine for months, it will be very helpful if you could give some advice.
-
I think only the EYE & mount nodes can't be renamed.
If you create new character with his own animation, you can name the bones to any name you want.
I think node names are used by the engine to find node animations.
correct me if I made stupid assumption
-
may i post reply in this thread?
how mad a squad of developers you are!!!!
the logo of torque should be changed to 3 rockets.
and thanks for the hard working :D :D :D
-
sorry Janders & Jason :D :D :D :D
I finally got another mess of Dummy.
this one is compatible with the soldier's animation, but not Gideon's.
Jason's method works only for the standing pose animations.
I think if one want to use both Gideon & soldier's animations, she need to import them into blender and perform retarget.
http://www.mediafire.com/download/40c3n3c4osjzdoe/Torque_Dummy_bip01_R4.7z
-
nothing wrong.
artistic mode
-
i am not sure.
both of the links in the first post of this thread give me 'The requested page cannot be found';
then I google and got the link I posted.
maybe I have bad luck, since the garagegames' forum gives me 'EXCEPTION: (index.php).........'.
-
-
downloaded and had a try.
i have no experience with quake map editing, and i found i am stupid enough to can't understand the usage of it.
didn't find a tutorial. the interface is not intuitive for beginner torque user without a tutorial or some document.
-
Jason's resource is good tutorial.
I learned making FP gun animation through Jason's shotgun.
thanks
-
I downloaded Jason's source file, and found that the armature is different than Janders'.
-
i was asking if Dummy is friendly for adopting animations.
I don't want he become a 2nd Soldier.
-
cool
I get it in my blender.
I am a super totally noob both in modeling/animation & torque3d.
Then I have the following question to this cool Dummy.
For the previous problems I met during learning t3d, I think I may writing something idiot here.
I have tried to create animations for my testing character.
for common FPS shooting game, I think it could save much work to let characters share animations. The running/fire/reload......
I thought the most important thing to reuse animations for a bunch of characters is sharing a same armature.
then a simple & stable armature is what I want.
an animation exported with an armature can be directly used in t3d by the character with the same armature.
I struggled with the default soldier model for several months, mostly with the first person view model & animations.
The soldier seems working properly in friend's 3dsmax.
I can't import it into blender properly. at least with the default importer of blender 2.75a.
Then I adopted the advice of somebody in the forum to make my own character and animations.
and now we got this new Dummy.
this guy seems to be easy to create animation.
But I can't fully understand the architecture of the armature since I am a totally noob.
and can't try to retarget some animation to it.
to my poor knowledge, I think I need to adopt this armature into t3d, bind all my character meshs to this armature to use the animation created for Dummy.
or retarget the animation created for Dummy to my own character's armature. I am using the default armature of makehuman.
but I haven't figured out a successfully retargeting.
I want somebody tell me if this Dummy can be used easily in t3d with this armature.
if yes we can try to create some useful animation set for it and replace the soldier.
An additional finding is the Torque_Dummy.dae crashed 3dsmax when imported with opencollada plugin, and imported empty with autodesk DAE importer.
the reason of trying 3dsmax is the concerning of cooperating with some wealthy guy installed 3dsmax or something expensive.
-
but
how did u get the fold of the cloth of this character?
It looks awesome.
-
thanks Azaezel
it seems I did 1 more stupid thing.
-
i tried to spawn 150 bots to fight. and the bots using setPathDestination to follow a path while performing patrol.
I found they will stuck after killing the player and go back to a path node in a crowd.
I read the aiplayer.cpp and found there is a OnStuck function has the ability to repath the bot.
but the function plan path only considering static items in the map, if another bot blocked the way, the repath can't detour with bots.
then I tried to add some code to see if our bot is stuck by other bot or player, then try to detour.
the code is a modified version of the findcover.
i am not sure if there is any cooked function to solve it and i missed it. if there is, i want to use the stock feature.
struct BlockerSearch
{
Player *blocker;
U32 count;
BlockerSearch()
{
count = 0;
}
};
static void isBlockerAICallback(SceneObject *obj, void *key)
{
Player *p = dynamic_cast(obj);
BlockerSearch *s = static_cast(key);
s->count++;
s->blocker = p;
}
bool AIPlayer::isBlockerAI(){
F32 width = mScaledBox.len_y();
Point3F forwardOffset;
forwardOffset[0] = width/2.f;
forwardOffset[1] = width/2.f;
forwardOffset[2] = width/2.f;
// Create a search state.
BlockerSearch s;
Box3F box(width /2.0f);//* 2.0f);
Point3F center = getPosition();
const MatrixF& transform = getTransform();
Point3F forwardVector = transform.getForwardVector();
center = center + forwardVector + forwardOffset;
box.setCenter(center);
U32 mask = PlayerObjectType;// | AIObjectType;
getContainer()->findObjects(box, mask, isBlockerAICallback, &s);
//Con::errorf("searching found: (%u)",s.count );
if(s.blocker)
{
return true;
}
return false;
}
void AIPlayer::detorAI(){
F32 width = mScaledBox.len_y();
Point3F backOffset;
backOffset[0] = width;
backOffset[1] = width;
backOffset[2] = width;
Point3F center = getPosition();
const MatrixF& transform = getTransform();
Point3F forwardVector = transform.getForwardVector();
center = center - forwardVector - backOffset;
setMoveDestination(center,false);
}
///////change the onStuck like this , it could back one step to make room for each other
void AIPlayer::onStuck()
{
#ifdef TORQUE_NAVIGATION_ENABLED
if(!mPathData.path.isNull()){
if( isBlockerAI()){
detorAI();
}else{
repath();
}
}else
#endif
throwCallback("onMoveStuck");
}
-
I was studying this problem half a year ago.
blender can't handle the rig of the demo soldier, u can't replace the mesh of the soldier easily to get ur own character in blender. I think it could be done in 3dsmax.
I tried even to hack the source code of blender. But the task beyond my ability. then i started creating my own rig in blender.
-
-
thanks Duion
i need to check the model and its animations
-
I tried to make a character using a model exported from other game.
and a bolt action rifle.
I got a problem when I mount the weapon to the 3rd person view of the character.
I can't find an angle easily for the mount point.
what I did is just trying some rotation value for the mount point in the shape editor.
but is there any easy way to pose it?
did I miss anything?


how setting languages (countries) into a T3D project
in Beginner
Posted
hi rlranft, where is the guy with a pig avatar? in this forum or the garagegame?