file save finished, not tested

Signed-off-by: chcurran <82187351+carlitosan@users.noreply.github.com>
This commit is contained in:
chcurran
2021-09-15 15:42:54 -07:00
parent 0dfcc1ea42
commit 296fca722e
17 changed files with 588 additions and 140 deletions
@@ -829,12 +829,12 @@ namespace ScriptCanvasEditor
NodePaletteModel::NodePaletteModel()
: m_paletteId(AZ::Entity::MakeId())
{
UpgradeNotifications::Bus::Handler::BusConnect();
UpgradeNotificationsBus::Handler::BusConnect();
}
NodePaletteModel::~NodePaletteModel()
{
UpgradeNotifications::Bus::Handler::BusDisconnect();
UpgradeNotificationsBus::Handler::BusDisconnect();
DisconnectLambdas();
@@ -61,7 +61,7 @@ namespace ScriptCanvasEditor
class NodePaletteModel
: public GraphCanvas::CategorizerInterface
, UpgradeNotifications::Bus::Handler
, UpgradeNotificationsBus::Handler
{
public:
typedef AZStd::unordered_map< ScriptCanvas::NodeTypeIdentifier, NodePaletteModelInformation* > NodePaletteRegistry;
@@ -148,7 +148,7 @@ namespace ScriptCanvasEditor
, m_assetModel(assetModel)
, m_categorizer(nodePaletteModel)
{
UpgradeNotifications::Bus::Handler::BusConnect();
UpgradeNotificationsBus::Handler::BusConnect();
if (m_assetModel)
{
@@ -166,7 +166,7 @@ namespace ScriptCanvasEditor
AzFramework::AssetCatalogEventBus::Handler::BusDisconnect();
AZ::Data::AssetBus::MultiHandler::BusDisconnect();
UpgradeNotifications::Bus::Handler::BusDisconnect();
UpgradeNotificationsBus::Handler::BusDisconnect();
}
@@ -57,7 +57,7 @@ namespace ScriptCanvasEditor
: public GraphCanvas::NodePaletteTreeItem
, AzFramework::AssetCatalogEventBus::Handler
, AZ::Data::AssetBus::MultiHandler
, UpgradeNotifications::Bus::Handler
, UpgradeNotificationsBus::Handler
, AZ::SystemTickBus::Handler
{
public: