Gems others

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-09-03 20:37:33 -07:00
parent bc27e5a6c7
commit 4a972d96f9
4 changed files with 8 additions and 0 deletions
@@ -22,7 +22,11 @@ namespace LandscapeCanvasEditor
virtual ~FindSelectedNodesAction() = default;
GraphCanvas::ActionGroupId GetActionGroupId() const override;
using GraphCanvas::ContextMenuAction::RefreshAction;
void RefreshAction(const GraphCanvas::GraphId& graphId, const AZ::EntityId& targetId) override;
using GraphCanvas::ContextMenuAction::TriggerAction;
GraphCanvas::ContextMenuAction::SceneReaction TriggerAction(const GraphCanvas::GraphId& graphId, const AZ::Vector2& scenePos) override;
private:
@@ -115,6 +115,7 @@ class CUiAnimViewKeyBundle
public:
CUiAnimViewKeyBundle()
: m_bAllOfSameType(true) {}
virtual ~CUiAnimViewKeyBundle() = default;
virtual bool AreAllKeysOfSameType() const override { return m_bAllOfSameType; }
@@ -20,6 +20,8 @@ namespace Maestro
friend class AZ::SerializeContext;
protected:
virtual ~SequenceAgent() = default;
// This pure virtual is required for the Editor and RunTime to find the componentTypeId - in the Editor
// it accounts for the GenericComponentWrapper component
virtual const AZ::Uuid& GetComponentTypeUuid(const AZ::Component& component) const = 0;
@@ -153,6 +153,7 @@ namespace Multiplayer
{
public:
OrphanedEntityRpcs(EntityReplicationManager& replicationManager);
virtual ~OrphanedEntityRpcs() = default;
void Update();
bool DispatchOrphanedRpcs(EntityReplicator& entityReplicator);
void AddOrphanedRpc(NetEntityId entityId, NetworkEntityRpcMessage& entityRpcMessage);