Mardi 11 janvier 2011 2 11 /01 /Jan /2011 19:05

Happy new year!!

Someone asked me some informations about my 720deg slerp ICE compound, so I decided to release it:

drag'n drop this link in an ICEtree

 

here's the video:

 

Par Mr_Cappuccino
Ecrire un commentaire - Voir les 3 commentaires
Dimanche 28 novembre 2010 7 28 /11 /Nov /2010 19:47

With the new softimage 2011.5 version, the ICE section that was in the simulate panel was replaced by the new ICE Panel.

this is great, but what if had some script commands in there and your studio still have prior Softimage versions?

 

Here is a script snipet that will check for the version and put the command in the good menu, just put it in the XSILoadPlugin function like this:

 

 

function XSILoadPlugin( in_reg )
{
    in_reg.Author = "Ahmidou lyazidi";
    in_reg.Name = "MyCommand";
    in_reg.Major = 1;
    in_reg.Minor = 0;

    in_reg.RegisterCommand("MyCommand","MyCommand");
    
    //Check for softimage version to feed the menu ( New ICE menu if >= 9.5, else, old simulate)
    var s = Application.Version().split(".")
    if (parseFloat(s[0]+"."+s[1])>= 9.5)
    {
        in_reg.RegisterMenu (siMenuTbICEParticlesCreateID,"My_Menu", false, true)    
    }
    else
    {
        in_reg.RegisterMenu(siMenuTbICECreateID,"My_Menu",false,false);
    }

    return true;
}

 

and if you want to use the new named subsection in that menu:

 

function My_Menu_Init( in_ctxt )
{
    var oMenu;
    oMenu = in_ctxt.Source;
    try
    {
        var oItem = oMenu.AddItem( "Fur", siMenuItemSection)
        oItem.SetBackgroundColor (178, 191, 194    )
    }
    catch(e)
    {
        //do nothing
    }
    oMenu.AddCallbackItem("MyCommand","MyCommand");
    return true;
}

Par Mr_Cappuccino
Ecrire un commentaire - Voir les 0 commentaires
Dimanche 28 novembre 2010 7 28 /11 /Nov /2010 16:15

last day I needed to Install Python Pil module ,but the installer couldn't found the Python installed in softimage and It don't even ask you for a manual search!!

So I installed a global Python and checked what was going on.

I found that the only way is to add the PythonPath and InstallPath in the registry:

 

HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.6\InstallPath = C:\Program Files\Autodesk\Softimage 2011 Subscription Advantage Pack\Application\python

 

and

 

HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.6\PythonPath = C:\Program Files\Autodesk\Softimage 2011 Subscription Advantage Pack\Application\python\Lib;C:\Program Files\Autodesk\Softimage 2011 Subscription Advantage Pack\Application\python\DLLs;C:\Program Files\Autodesk\Softimage 2011 Subscription Advantage Pack\Application\python\Lib\lib-tk

Par Mr_Cappuccino
Ecrire un commentaire - Voir les 0 commentaires
Vendredi 19 février 2010 5 19 /02 /Fév /2010 01:24



This is a quick test for muscles deformations,
the muscles are fully ICE driven, the system is based on 3 compounds:
-a muscle shaper
-a muscle deformer
-a skin deformer (kind of custom shrink wrap) that is comming on top of envelope.
it's just one day of work, quite promising :)
Par Mr_Cappuccino
Ecrire un commentaire - Voir les 0 commentaires
Mardi 16 février 2010 2 16 /02 /Fév /2010 16:53

First blog, first post!
Here is a video that is showing an ICE compound for shapes interpolation
in most softwares it is done in a linear way. That can be quite problematic
for the jaw or the eyelids , so I built that ICE compound, it's using a parametric
quadriatic formula and a local vector defined from the base shape or an inbetween
shape.

Edit: here is the link to the compound

Par Ahmidou
Ecrire un commentaire - Voir les 0 commentaires
Créer un blog gratuit sur over-blog.com - Contact - C.G.U. - Rémunération en droits d'auteur - Signaler un abus