EMotionFX

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
pappeste
2021-06-28 15:05:25 -07:00
committed by Esteban Papp
parent 83e1615686
commit 9b7dea6703
3 changed files with 3 additions and 3 deletions
@@ -95,7 +95,7 @@ namespace EMotionFX
/// Returns skinning method used by the actor.
virtual SkinningMethod GetSkinningMethod() const = 0;
static const size_t s_invalidJointIndex = ~0;
static const size_t s_invalidJointIndex = std::numeric_limits<size_t>::max();
};
using ActorComponentRequestBus = AZ::EBus<ActorComponentRequests>;
@@ -28,7 +28,7 @@ namespace EMotionFX
Q_OBJECT //AUTOMOC
public:
enum
enum : uint32
{
CLASS_ID = 0x8efd2bee
};
@@ -59,7 +59,7 @@ namespace EMotionFX
static void ResetDisplayedRoundingError();
private:
size_t m_id = -1;
size_t m_id = std::numeric_limits<size_t>::max();
bool m_displayMotionSelectionWeight = false;
const IRandomMotionSelectionDataContainer* m_dataContainer = nullptr;
static float s_displayedRoundingError;