breakpoint

before change animation type
This commit is contained in:
CortexCore
2023-12-27 02:24:00 +08:00
parent 4adcd33811
commit 08cdf4d785
27 changed files with 3050 additions and 775 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Animancer;
using UnityEngine;
namespace BITFALL.Movement.MotionBased
{
[Serializable]
public sealed class MotionBasedClipTransition : ClipTransition, IMotionBasedAnimationState
{
object ICloneable.Clone() => MemberwiseClone();
}
[Serializable]
public sealed class MotionBasedMixTransition : LinearMixerTransition, IMotionBasedAnimationState
{
object ICloneable.Clone() => MemberwiseClone();
}
}