|
|
|
@ -928,6 +928,7 @@ namespace ScriptCanvas
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return execution->GetId().m_node
|
|
|
|
return execution->GetId().m_node
|
|
|
|
&& IsOnce(*execution->GetId().m_node)
|
|
|
|
&& IsOnce(*execution->GetId().m_node)
|
|
|
|
|
|
|
|
&& execution->GetId().m_slot
|
|
|
|
&& execution->GetId().m_slot->GetType() == CombinedSlotType::ExecutionIn;
|
|
|
|
&& execution->GetId().m_slot->GetType() == CombinedSlotType::ExecutionIn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@ -938,7 +939,7 @@ namespace ScriptCanvas
|
|
|
|
|
|
|
|
|
|
|
|
bool IsOnceReset(const Node& node, const Slot* slot)
|
|
|
|
bool IsOnceReset(const Node& node, const Slot* slot)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return slot = OnceProperty::GetResetSlot(&node);
|
|
|
|
return slot == OnceProperty::GetResetSlot(&node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool IsOperatorArithmetic(const ExecutionTreeConstPtr& execution)
|
|
|
|
bool IsOperatorArithmetic(const ExecutionTreeConstPtr& execution)
|
|
|
|
|