示例#1
0
        public byte?getBlockAt(ref BlockLoc loc)
        {
            Vector3 worldSpaceVec3 = loc.toWorldSpaceVector3();
            Island  toTest         = getClosestIslandToLocation(ref worldSpaceVec3);

            return(toTest.getBlockAt(ref loc));
        }
示例#2
0
 public byte?getBlockAtOnGivenIsland(ref BlockLoc loc, Island toTest)
 {
     return(toTest.getBlockAt(ref loc));
 }