Gems/ScriptCanvas*
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -102,7 +102,7 @@ namespace ScriptCanvas
|
||||
|
||||
AZ::Outcome<AZStd::string, void> GetFunctionCallName(const Slot* /*slot*/) const override;
|
||||
bool IsEBusAddressed() const override;
|
||||
AZStd::optional<size_t> GetEventIndex(AZStd::string eventName) const;
|
||||
AZStd::optional<size_t> GetEventIndex(AZStd::string eventName) const override;
|
||||
const EBusEventEntry* FindEvent(const AZStd::string& name) const;
|
||||
AZStd::string GetEBusName() const override;
|
||||
bool IsAutoConnected() const override;
|
||||
@@ -138,7 +138,7 @@ namespace ScriptCanvas
|
||||
|
||||
void SetAutoConnectToGraphOwner(bool enabled);
|
||||
|
||||
void OnDeserialize();
|
||||
void OnDeserialize() override;
|
||||
|
||||
#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)////
|
||||
void OnWriteEnd();
|
||||
|
||||
@@ -107,7 +107,7 @@ namespace ScriptCanvas
|
||||
|
||||
SlotId GetBusSlotId() const;
|
||||
|
||||
void OnDeserialize();
|
||||
void OnDeserialize() override;
|
||||
|
||||
#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)////
|
||||
void OnWriteEnd();
|
||||
|
||||
@@ -36,9 +36,9 @@ namespace ScriptCanvas
|
||||
void OnConfigured() override;
|
||||
void ConfigureVisualExtensions() override;
|
||||
|
||||
bool CanDeleteSlot(const SlotId& slotId) const;
|
||||
bool CanDeleteSlot(const SlotId& slotId) const override;
|
||||
|
||||
SlotId HandleExtension(AZ::Crc32 extensionId);
|
||||
SlotId HandleExtension(AZ::Crc32 extensionId) override;
|
||||
|
||||
AZ::Outcome<DependencyReport, void> GetDependencies() const override;
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ namespace ScriptCanvas
|
||||
|
||||
IsNull();
|
||||
|
||||
AZ::Outcome<DependencyReport, void> GetDependencies() const;
|
||||
AZ::Outcome<DependencyReport, void> GetDependencies() const override;
|
||||
|
||||
bool IsIfBranch() const override;
|
||||
|
||||
|
||||
@@ -30,13 +30,13 @@ namespace ScriptCanvas
|
||||
|
||||
OrderedSequencer();
|
||||
|
||||
bool CanDeleteSlot(const SlotId& slotId) const;
|
||||
bool CanDeleteSlot(const SlotId& slotId) const override;
|
||||
|
||||
AZ::Outcome<DependencyReport, void> GetDependencies() const override;
|
||||
|
||||
ConstSlotsOutcome GetSlotsInExecutionThreadByTypeImpl(const Slot& executionSlot, CombinedSlotType targetSlotType, const Slot* /*executionChildSlot*/) const override;
|
||||
|
||||
SlotId HandleExtension(AZ::Crc32 extensionId);
|
||||
SlotId HandleExtension(AZ::Crc32 extensionId) override;
|
||||
|
||||
void OnInit() override;
|
||||
|
||||
|
||||
@@ -33,9 +33,9 @@ namespace ScriptCanvas
|
||||
void OnConfigured() override;
|
||||
void ConfigureVisualExtensions() override;
|
||||
|
||||
bool CanDeleteSlot(const SlotId& slotId) const;
|
||||
bool CanDeleteSlot(const SlotId& slotId) const override;
|
||||
|
||||
SlotId HandleExtension(AZ::Crc32 extensionId);
|
||||
SlotId HandleExtension(AZ::Crc32 extensionId) override;
|
||||
|
||||
// Script Canvas Translation...
|
||||
bool IsSwitchStatement() const override { return true; }
|
||||
|
||||
+1
-1
@@ -39,7 +39,7 @@ namespace ScriptCanvas
|
||||
void OnInit() override;
|
||||
void ConfigureVisualExtensions() override;
|
||||
|
||||
bool OnValidateNode(ValidationResults& validationResults);
|
||||
bool OnValidateNode(ValidationResults& validationResults) override;
|
||||
|
||||
SlotId HandleExtension(AZ::Crc32 extensionId) override;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user