16/07/16 01:39:46.34 os6qmIpG.net
>>559
これじゃ駄目なん?あるみん
[System.Serializeable]
public class TileCip{
. public Image img;
. public Vector2 position;
. public Animation animation;
}
[System.Serializeable]
public class Map{
. public TileCip[] tiles;
. public TileCip this[int n]{
. get{return tiles[n];}
. set{tiles[n] = value;}
. }
}
// Inspector View
public Map[] map;
// Access
map[0][0].img;
map[0][0].position;