Navigation
API > API/Plugins > API/Plugins/TextureGraph > API/Plugins/TextureGraph/UTG_Graph
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
UTG_Node * CreateExpressionNode
(
const UClass* ExpressionClass |
Create a node from an Expression Class A new Expression instance is created along with the Node instance The Node is setup with its input and output pins reflecting the Signature of the Expression. | TG_Graph.h | |
UTG_Node * CreateExpressionNode
(
UTG_Expression* NewExpression |
Create a node from an initialized Expression A new Node instance is created which uses initialized expression The Node is setup with its input and output pins reflecting the Signature of the Expression. | TG_Graph.h |
CreateExpressionNode(const UClass *)
Description
Create a node from an Expression Class A new Expression instance is created along with the Node instance The Node is setup with its input and output pins reflecting the Signature of the Expression.
| Name | CreateExpressionNode |
| Type | function |
| Header File | /Engine/Plugins/TextureGraph/Source/TextureGraph/Public/TG_Graph.h |
| Include Path | #include "TG_Graph.h" |
| Source | /Engine/Plugins/TextureGraph/Source/TextureGraph/Private/TG_Graph.cpp |
UTG_Node * CreateExpressionNode
(
const UClass * ExpressionClass
)
CreateExpressionNode(UTG_Expression *)
Description
Create a node from an initialized Expression A new Node instance is created which uses initialized expression The Node is setup with its input and output pins reflecting the Signature of the Expression.
| Name | CreateExpressionNode |
| Type | function |
| Header File | /Engine/Plugins/TextureGraph/Source/TextureGraph/Public/TG_Graph.h |
| Include Path | #include "TG_Graph.h" |
| Source | /Engine/Plugins/TextureGraph/Source/TextureGraph/Private/TG_Graph.cpp |
UTG_Node * CreateExpressionNode
(
UTG_Expression * NewExpression
)