23/10/08 16:06:40.55 CixfVofr.net
さて
private enum groundType
{
NONE,
GROUND
}
private groundType[,] nurulist;
groundType[,] tile = {
{groundType.NONE,groundType.GROUND },
{groundType.GROUND,groundType.GROUND },
};
private void Start()
{
nurulist = new groundType[tile.GetLength(0), tile.GetLength(1)];
少し簡単にしてみた
これ見ればわかると思うけど
比較してるとこ、、何もはいってないよね?
てことで
//nurulist = new groundType[tile.GetLength(0), tile.GetLength(1)];
nurulist = tile;
にすれば行けるけど
まぁシンプルにした方がいいんじゃない