removed unused function from script event handler node

Signed-off-by: chcurran <82187351+carlitosan@users.noreply.github.com>
This commit is contained in:
chcurran
2021-09-08 16:31:46 -07:00
parent 32515f33d4
commit 443bf472cb
2 changed files with 0 additions and 24 deletions
@@ -556,29 +556,6 @@ namespace ScriptCanvas
return true;
}
bool ReceiveScriptEvent::SetupHandler()
{
if (!m_handler)
{
if (!m_asset.IsReady() && m_scriptEventAssetId.IsValid())
{
m_asset = AZ::Data::AssetManager::Instance().GetAsset<ScriptEvents::ScriptEventsAsset>(m_scriptEventAssetId, AZ::Data::AssetLoadBehavior::PreLoad);
m_asset.BlockUntilLoadComplete();
CreateHandler(m_asset);
CreateEbus();
}
if (!m_handler)
{
AZStd::string error = AZStd::string::format("Script Event receiver node was not initialized (%s)!", m_definition.GetName().c_str());
SCRIPTCANVAS_REPORT_ERROR((*this), error.c_str());
return false;
}
}
return true;
}
bool ReceiveScriptEvent::IsOutOfDate(const VersionData& graphVersion) const
{
AZ_UNUSED(graphVersion);
@@ -88,7 +88,6 @@ namespace ScriptCanvas
private:
bool CreateEbus();
bool SetupHandler();
AZ::BehaviorEBusHandler* m_handler = nullptr;
AZ::BehaviorEBus* m_ebus = nullptr;