PDA

View Full Version : CS : Loading bips via maxscript


danyrey
05-20-2003, 09:10 AM
I am searching for a max script command to load a .bip animation onto a biped. It seems that this command isn't documented anywhere.

-daniel

DavidT
05-20-2003, 09:24 AM
If you select the root of the biped you can open the motion panel and then open the motion capture panel and load a .bip file into max.

orpheo
05-20-2003, 09:46 AM
There is a "Biped load ans save methods" in the maxscript reference... I think the command you are looking for should be:

biped.LoadBipFile <biped_ctrl> <filename>

danyrey
05-20-2003, 05:23 PM
Thx very much, i somehow missed that in my first search.

:thumbsup:

-daniel

Schizm
05-21-2003, 07:50 AM
That's my script to get open bip file under key combination:

macroScript Biped_open_dlg
category:"MAX Script Tools"
internalcategory:"MAX Script Tools"
buttontext:"Open Biped file dialog"
toolTip:"Open Biped file dialog"
(
On execute do
(
max motion mode;
biped.loadbipfiledlg $bip01.controller;
)
)

It works only if root of your biped is called bip01, but this is enough for me. You can easily modify it.

Regerds

CGTalk Moderation
01-15-2006, 04:03 AM
This thread has been automatically closed as it remained inactive for 12 months. If you wish to continue the discussion, please create a new thread in the appropriate forum.