Gems/GraphModel

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-09-03 20:37:03 -07:00
parent dfec238917
commit f3992935fe
2 changed files with 3 additions and 0 deletions
@@ -67,6 +67,7 @@ namespace GraphModel
//! \param dataType The type of data represented by this node
GraphInputNode(GraphModel::GraphPtr graph, DataTypePtr dataType);
using BaseInputOutputNode::PostLoadSetup;
void PostLoadSetup(GraphPtr graph, NodeId id) override;
//! Returns the value of the DefaultValue slot, which indicates the default value for this input. This
@@ -95,6 +96,7 @@ namespace GraphModel
//! \param dataType The type of data represented by this node
GraphOutputNode(GraphModel::GraphPtr graph, DataTypePtr dataType);
using BaseInputOutputNode::PostLoadSetup;
void PostLoadSetup(GraphPtr graph, NodeId id) override;
protected:
@@ -36,6 +36,7 @@ namespace GraphModel
const char* GetTitle() const override;
using Node::PostLoadSetup;
void PostLoadSetup(GraphPtr ownerGraph, NodeId id) override;
protected: