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:
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:
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;
}
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
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
ICE arc interpolation from Ahmidou Lyazidi on Vimeo.