mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
27 lines
451 B
C#
27 lines
451 B
C#
using FullInspector;
|
|
|
|
namespace MoleMole
|
|
{
|
|
[fiInspectorOnly]
|
|
public class BaseFollowShortState : State<MainCameraFollowState>
|
|
{
|
|
public bool isInteruptable { get; protected set; }
|
|
|
|
public bool isSkippingBaseState { get; protected set; }
|
|
|
|
public BaseFollowShortState(MainCameraFollowState followState)
|
|
: base(followState)
|
|
{
|
|
}
|
|
|
|
public virtual void PostUpdate()
|
|
{
|
|
}
|
|
|
|
protected void End()
|
|
{
|
|
_owner.RemoveShortState();
|
|
}
|
|
}
|
|
}
|