|
Hi All,
Right now I’m trying to learn more about explicitly adding information to deltas and recently hit a point where the SDK doesn’t seem to cover what I’d like to do: I’ve had good success following the SDK for the commands it states, but seem to be missing the command to add an entry to siModificationDeltaGroupRelation
ex:
siModificationDeltaType.siModificationDeltaStaticValue
from http://www.kxcad.net/Softimage_X...ta_AddStaticValueItem.htm
var oDeltaAction = oDelta.AddAction(siModificationDeltaStaticValue)
// Add the Static Value item
var oActionDeltaItem = oDeltaAction.AddStaticValueItem(oCube + “.kine.global.posx”, 10);
what I’m looking for:
siModificationDeltaType.siModificationDeltaGroupRelation
var oActionDeltaItem = oDeltaAction.???????????????(oCube + “.kine.global.posx”, 10);
I’m assuming the command exists as the entries get added if I add an object to a group or partition, but have no idea how to access it explicitly. I have had success with taking an already existing entry and modifying it to do what I want, but still leaves the question.
Thanks in advance!
|
|
|