14 lines
270 B
C#
14 lines
270 B
C#
|
namespace EntityStates.VoidRaidCrab;
|
||
|
|
||
|
public class SpinBeamEnter : BaseSpinBeamAttackState
|
||
|
{
|
||
|
public override void FixedUpdate()
|
||
|
{
|
||
|
base.FixedUpdate();
|
||
|
if (base.fixedAge >= base.duration && base.isAuthority)
|
||
|
{
|
||
|
outer.SetNextState(new SpinBeamWindUp());
|
||
|
}
|
||
|
}
|
||
|
}
|