add file state for graphs

Signed-off-by: chcurran <82187351+carlitosan@users.noreply.github.com>
This commit is contained in:
chcurran
2021-11-04 15:58:19 -07:00
committed by Chris Burel
parent 20147ddafb
commit d40b9fc809
15 changed files with 99 additions and 93 deletions
@@ -304,12 +304,12 @@ namespace ScriptCanvasEditor
void OnUndoRedoEnd() override;
////
void SetAssetType(AZ::Data::AssetType);
void ReportError(const ScriptCanvas::Node& node, const AZStd::string& errorSource, const AZStd::string& errorMessage) override;
const GraphStatisticsHelper& GetNodeUsageStatistics() const;
void MarkOwnership(ScriptCanvas::ScriptCanvasData& owner);
// Finds and returns all nodes within the graph that are of the specified type
template <typename NodeType>
AZStd::vector<const NodeType*> GetNodesOfType() const
@@ -393,5 +393,6 @@ namespace ScriptCanvasEditor
bool m_saveFormatConverted = true;
ScriptCanvasEditor::SourceHandle m_assetId;
ScriptCanvas::ScriptCanvasData* m_owner;
};
}