HDK
|
Meta-data for a Houdini Node. More...
#include <HAPI_Common.h>
Public Attributes | |
HAPI_NodeId | id |
HAPI_NodeId | parentId |
HAPI_StringHandle | nameSH |
HAPI_NodeType | type |
HAPI_Bool | isValid |
int | totalCookCount |
Total number of cooks of this node. More... | |
int | uniqueHoudiniNodeId |
HAPI_StringHandle | internalNodePathSH |
int | parmCount |
int | parmChoiceCount |
int | childNodeCount |
int | inputCount |
The number of inputs this specific node has. More... | |
int | outputCount |
The number of outputs this specific node has. More... | |
HAPI_Bool | createdPostAssetLoad |
HAPI_Bool | isTimeDependent |
Indicates if this node will change over time. More... | |
int | parmIntValueCount |
int | parmFloatValueCount |
int | parmStringValueCount |
Meta-data for a Houdini Node.
Definition at line 1252 of file HAPI_Common.h.
int HAPI_NodeInfo::childNodeCount |
The number of child nodes. This is 0 for all nodes that are not node networks.
Definition at line 1296 of file HAPI_Common.h.
HAPI_Bool HAPI_NodeInfo::createdPostAssetLoad |
Nodes created via scripts or via HAPI_CreateNode() will be have this set to true. Only such nodes can be deleted using HAPI_DeleteNode().
Definition at line 1307 of file HAPI_Common.h.
HAPI_NodeId HAPI_NodeInfo::id |
Definition at line 1254 of file HAPI_Common.h.
int HAPI_NodeInfo::inputCount |
The number of inputs this specific node has.
Definition at line 1299 of file HAPI_Common.h.
HAPI_StringHandle HAPI_NodeInfo::internalNodePathSH |
This is the internal node path in the Houdini scene graph. This path is meant to be abstracted away for most client purposes but for advanced uses it can come in handy.
Definition at line 1275 of file HAPI_Common.h.
HAPI_Bool HAPI_NodeInfo::isTimeDependent |
Indicates if this node will change over time.
Definition at line 1310 of file HAPI_Common.h.
HAPI_Bool HAPI_NodeInfo::isValid |
Always true unless the asset's definition has changed due to loading a duplicate asset definition and from another OTL asset library file OR deleting the OTL asset library file used by this node's asset.
Definition at line 1262 of file HAPI_Common.h.
HAPI_StringHandle HAPI_NodeInfo::nameSH |
Definition at line 1256 of file HAPI_Common.h.
int HAPI_NodeInfo::outputCount |
The number of outputs this specific node has.
Definition at line 1302 of file HAPI_Common.h.
HAPI_NodeId HAPI_NodeInfo::parentId |
Definition at line 1255 of file HAPI_Common.h.
int HAPI_NodeInfo::parmChoiceCount |
The total number of choices among all the combo box parameters. See HAPI_Parameters_ChoiceLists.
Definition at line 1292 of file HAPI_Common.h.
int HAPI_NodeInfo::parmCount |
Total number of parameters this asset has exposed. Includes hidden parameters. See HAPI_Parameters.
Definition at line 1280 of file HAPI_Common.h.
int HAPI_NodeInfo::parmFloatValueCount |
Number of values. A single parameter may have more than one value so this number is more than or equal to HAPI_NodeInfo::parmCount.
Definition at line 1286 of file HAPI_Common.h.
int HAPI_NodeInfo::parmIntValueCount |
Number of values. A single parameter may have more than one value so this number is more than or equal to HAPI_NodeInfo::parmCount.
Definition at line 1285 of file HAPI_Common.h.
int HAPI_NodeInfo::parmStringValueCount |
Number of values. A single parameter may have more than one value so this number is more than or equal to HAPI_NodeInfo::parmCount.
Definition at line 1287 of file HAPI_Common.h.
int HAPI_NodeInfo::totalCookCount |
Total number of cooks of this node.
Definition at line 1265 of file HAPI_Common.h.
HAPI_NodeType HAPI_NodeInfo::type |
Definition at line 1257 of file HAPI_Common.h.
int HAPI_NodeInfo::uniqueHoudiniNodeId |
Use this unique id to grab the OP_Node pointer for this node. If you're linking against the C++ HDK, include the OP_Node.h header and call OP_Node::lookupNode().
Definition at line 1270 of file HAPI_Common.h.