Gems/GraphCanvas
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -94,7 +94,7 @@ namespace GraphCanvas
|
||||
////
|
||||
|
||||
// GeometryNotifications
|
||||
void OnBoundsChanged();
|
||||
void OnBoundsChanged() override;
|
||||
void OnPositionChanged(const AZ::EntityId& targetEntity, const AZ::Vector2& position) override;
|
||||
////
|
||||
|
||||
@@ -117,7 +117,7 @@ namespace GraphCanvas
|
||||
|
||||
AZ::EntityId GetSourceGroup() const override;
|
||||
|
||||
AZStd::vector< Endpoint > GetRedirectedEndpoints() const;
|
||||
AZStd::vector< Endpoint > GetRedirectedEndpoints() const override;
|
||||
void ForceEndpointRedirection(const AZStd::vector< Endpoint >& endpoints) override;
|
||||
////
|
||||
|
||||
|
||||
@@ -239,7 +239,7 @@ namespace GraphCanvas
|
||||
////
|
||||
|
||||
// SystemTickBus
|
||||
void OnSystemTick();
|
||||
void OnSystemTick() override;
|
||||
////
|
||||
|
||||
// VisualNotificationBus
|
||||
@@ -446,13 +446,13 @@ namespace GraphCanvas
|
||||
////
|
||||
|
||||
// CommentNotificationBus
|
||||
void OnEditBegin();
|
||||
void OnEditEnd();
|
||||
void OnEditBegin() override;
|
||||
void OnEditEnd() override;
|
||||
|
||||
void OnCommentSizeChanged(const QSizeF& oldSize, const QSizeF& newSize) override;
|
||||
|
||||
void OnCommentFontReloadBegin();
|
||||
void OnCommentFontReloadEnd();
|
||||
void OnCommentFontReloadBegin() override;
|
||||
void OnCommentFontReloadEnd() override;
|
||||
////
|
||||
|
||||
// QGraphicsItem
|
||||
|
||||
@@ -61,13 +61,13 @@ namespace GraphCanvas
|
||||
////
|
||||
|
||||
// AZ::Component
|
||||
void Init();
|
||||
void Activate();
|
||||
void Deactivate();
|
||||
void Init() override;
|
||||
void Activate() override;
|
||||
void Deactivate() override;
|
||||
////
|
||||
|
||||
// NodeNotification
|
||||
void OnNodeActivated();
|
||||
void OnNodeActivated() override;
|
||||
////
|
||||
|
||||
void UpdateLayoutParameters();
|
||||
|
||||
Reference in New Issue
Block a user