15 lines
310 B
C#
15 lines
310 B
C#
|
namespace EntityStates.TitanMonster;
|
||
|
|
||
|
public class ChargeGoldMegaLaser : ChargeMegaLaser
|
||
|
{
|
||
|
public override void FixedUpdate()
|
||
|
{
|
||
|
base.FixedUpdate();
|
||
|
if (base.fixedAge >= duration && base.isAuthority)
|
||
|
{
|
||
|
FireGoldMegaLaser nextState = new FireGoldMegaLaser();
|
||
|
outer.SetNextState(nextState);
|
||
|
}
|
||
|
}
|
||
|
}
|