中学一年生です、
このエラーを教えていただければ助かります。
using System.Collections.Generic;
using UnityEngine;
using System.Collections;
public class StageTableModle
{
// Start is called before the first frame update[
int MaxStageConst = 10; List<bool> enemypoint;
public StageTableModle()
{
enemypoint = new List<bool>();
for (int i = 0; i < MaxStageConst; i++) { enemypoint.Add(false); } enemypoint[3] = true; enemypoint[5] = true; enemypoint[8] = true; } public bool IsEnamyPointAt(int currentStage) { return enemypoint[currentStage]; } public bool HasGameCleared(int currentStage) { if (enemypoint.Count <= currentStage) { return true; } return false; }
}
エラー内容
ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/01/10 09:25
2022/01/10 09:28