Exemplo n.º 1
0
        public byte?getBlockAt(ref BlockLoc loc)
        {
            Vector3 worldSpaceVec3 = loc.toWorldSpaceVector3();
            Island  toTest         = getClosestIslandToLocation(ref worldSpaceVec3);

            return(toTest.getBlockAt(ref loc));
        }
Exemplo n.º 2
0
 public byte?getBlockAtOnGivenIsland(ref BlockLoc loc, Island toTest)
 {
     return(toTest.getBlockAt(ref loc));
 }