Introduced
7.5
Description
Creates an instance of an ICENode wizard you can use to generate self-installing ICENode plug-ins. The resulting wizard is a CustomProperty nested under the SDK wizard model which itself resides under the scene root.
Scripting Syntax
CreateICENodeWizard( [DestinationDir], [ICENodeTypeName] )
Parameters
|
Parameter |
Type |
Description |
|
DestinationDir |
The destination folder for the plug-in to generate. Default Value: If no destination folder is specified, the wizard property will be created in the user path. |
|
|
ICENodeTypeName |
The name which uniquely identifies the type of the new custom ICENode object. This eventually becomes the name of the custom ICENode. It can also be specified using 'nodewiz.ICENodeName = "XYZNode";' instead, as the example below demonstrates. Note: This is different from the ICENode instance name which is only specified at creation time. For example, if you added two instances of the XYZNode type of ICENode to your ICE tree, one will appear as "XYZNode" in the explorer, and the other will appear as "XYZNode[1]". Default Value: MyCustomICENode |
Return Value
Newly created ICENode wizard as a CustomProperty object.
Examples
JScript Example
/* This example demonstrates how to create an ICENode wizard using the CreateICENodeWizard command and then generate a very simple custom ICENode using the new wizard. */ var nodewiz = CreateICENodeWizard(); nodewiz.ICENodeName = "XYZNode"; nodewiz.CodingLanguage = "Cpp"; nodewiz.ICENodeCategory = "XYZ ICENode" nodewiz.InitCB = true; // Generate one input port nodewiz.InPortName = "in" nodewiz.InPortDataType = "siICENodeDataFloat"; nodewiz.InPortStructType = "siICENodeStructureSingle"; nodewiz.InPortContextType = "siICENodeContextAny"; nodewiz.InPortGroupID = 101; AddInputPortToICENodeWizard(nodewiz); // Generate one output port nodewiz.OutPortName = "out" nodewiz.OutPortDataType = "siICENodeDataFloat"; nodewiz.OutPortStructType = "siICENodeStructureSingle"; nodewiz.OutPortContextType = "siICENodeContextAny"; nodewiz.OutPortGroupID = 301; AddOutputPortToICENodeWizard(nodewiz); // Generates the XYZNode implementation and plug-in GenerateICENodePlugin(nodewiz);
See Also
|
|
|
|
Autodesk Softimage v7.5