Gems/EMotionFX

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-09-03 20:36:33 -07:00
parent 53c026b43e
commit 2acd05e595
7 changed files with 12 additions and 1 deletions
@@ -42,6 +42,7 @@ namespace EMStudio
/**
* update the actor instance.
*/
using MCommon::ManipulatorCallback::Update;
void Update(const AZ::Vector3& value) override;
/**
@@ -85,6 +86,7 @@ namespace EMStudio
/**
* update the actor instance.
*/
using MCommon::ManipulatorCallback::Update;
void Update(const AZ::Quaternion& value) override;
/**
@@ -125,6 +127,7 @@ namespace EMStudio
/**
* update the actor instance.
*/
using MCommon::ManipulatorCallback::Update;
void Update(const AZ::Vector3& value) override;
/**
@@ -142,6 +142,7 @@ namespace EMStudio
, m_manipulatorCallback(manipulatorCallback)
{}
using MCommon::ManipulatorCallback::Update;
void Update(const AZ::Quaternion& value) override
{
// call the base class update function
@@ -152,6 +152,7 @@ namespace EMStudio
, m_manipulatorCallback(manipulatorCallback)
{}
using MCommon::ManipulatorCallback::Update;
void Update(const AZ::Vector3& value) override
{
// call the base class update function
@@ -11,6 +11,8 @@ namespace EMotionFX
class AnimGraphInstance
{
public:
virtual ~AnimGraphInstance() = default;
//void Output(Pose* outputPose);
//void Start();
//void Stop();
@@ -14,6 +14,8 @@ namespace EMotionFX
public:
AZ_RTTI(AnimGraphNode, "{7F1C0E1D-4D32-4A6D-963C-20193EA28F95}", AnimGraphObject)
virtual ~AnimGraphNode() = default;
MOCK_CONST_METHOD1(CollectOutgoingConnections, void(AZStd::vector<AZStd::pair<BlendTreeConnection*, AnimGraphNode*>>& outConnections));
MOCK_CONST_METHOD2(CollectOutgoingConnections, void(AZStd::vector<AZStd::pair<BlendTreeConnection*, AnimGraphNode*>>& outConnections, const size_t portIndex));
@@ -11,7 +11,7 @@ namespace MCore
class CommandManager
{
public:
//virtual ~CommandManager();
virtual ~CommandManager() = default;
//bool ExecuteCommand(const char* command, AZStd::string& outCommandResult, bool addToHistory = true, Command** outExecutedCommand = nullptr, CommandLine* outExecutedParamters = nullptr, bool callFromCommandGroup = false, bool clearErrors = true, bool handleErrors = true);
//bool ExecuteCommand(const AZStd::string& command, AZStd::string& outCommandResult, bool addToHistory = true, Command** outExecutedCommand = nullptr, CommandLine* outExecutedParamters = nullptr, bool callFromCommandGroup = false, bool clearErrors = true, bool handleErrors = true);
@@ -12,6 +12,8 @@ namespace CommandSystem
: public MCore::CommandManager
{
public:
virtual ~CommandManager() = default;
MOCK_METHOD0(GetCurrentSelection, SelectionList&());
MOCK_METHOD1(SetCurrentSelection, void(SelectionList& selection));
MOCK_CONST_METHOD0(GetLockSelection, bool());