コード例 #1
0
ファイル: Dash.cs プロジェクト: mwaitzman/TussleOverdrive
 public override void stateTransitions()
 {
     base.stateTransitions();
     //These classes will be phased out as time goes on. Until then, we need to just exit early if we're in the builder since these don't actually use Subactions
     if (isInBuilder)
     {
         return;
     }
     StateTransitions.DashState(actor.GetAbstractFighter());
 }