コード例 #1
0
 private void OnCeilingKill()
 {
     if (!playerDied)
     {
         playerDied = true;
         failStep.StartStep();
     }
 }
コード例 #2
0
ファイル: GameStep.cs プロジェクト: helemaalbigt/GGJ2018
    public void Next()
    {
        if (onActionComplete != null)
        {
            onActionComplete();
        }

        Debug.Log("Step Complete: " + name);

        if (nextStep != null)
        {
            nextStep.StartStep();
        }
    }
コード例 #3
0
ファイル: CeilingStep.cs プロジェクト: helemaalbigt/GGJ2018
 private void OnCeilingKill()
 {
     failStep.StartStep();
 }