Add **Nested Animations** for compositing animation clips

This commit is contained in:
Wojtek Figat
2022-07-31 15:53:09 +02:00
parent 3a39dad30f
commit 3b52914416
15 changed files with 583 additions and 186 deletions

View File

@@ -82,7 +82,6 @@ public:
/// <summary>
/// Gets the total amount of keyframes in the animation curves.
/// </summary>
/// <returns>The total keyframes count.</returns>
int32 GetKeyframesCount() const
{
return Position.GetKeyframes().Count() + Rotation.GetKeyframes().Count() + Scale.GetKeyframes().Count();
@@ -124,7 +123,6 @@ public:
/// <summary>
/// Gets the length of the animation (in seconds).
/// </summary>
/// <returns>The length in seconds.</returns>
FORCE_INLINE float GetLength() const
{
#if BUILD_DEBUG
@@ -136,7 +134,6 @@ public:
/// <summary>
/// Gets the total amount of keyframes in the all animation channels.
/// </summary>
/// <returns>The total keyframes count.</returns>
int32 GetKeyframesCount() const
{
int32 result = 0;