예제 #1
0
파일: SpaceCell.cs 프로젝트: chemming/SRL_1
    public SpaceCell(Vector3 coordMinIn,Vector3 coordMaxIn,SpaceCell parentIn)
    {
        isNode = 1;
        GameObject go = new GameObject ();
        coordMin = coordMinIn;
        coordMax = coordMaxIn;

        parent = parentIn;
        localObjects = new List<GameObject> ();
        //childCells = new List<SpaceCell> ();

        if(SRLConfiguration.CELL_debug == 1)
        {

        }
    }
예제 #2
0
 public SpaceCellRatingDifferencePair(int ratingDifference, SpaceCell cell)
 {
     _ratingDifference = ratingDifference;
     _cell             = cell;
 }