コード例 #1
0
ファイル: IslandManager.cs プロジェクト: HImports/IslandGame
        public byte?getBlockAt(ref BlockLoc loc)
        {
            Vector3 worldSpaceVec3 = loc.toWorldSpaceVector3();
            Island  toTest         = getClosestIslandToLocation(ref worldSpaceVec3);

            return(toTest.getBlockAt(ref loc));
        }
コード例 #2
0
ファイル: IslandManager.cs プロジェクト: HImports/IslandGame
 public byte?getBlockAtOnGivenIsland(ref BlockLoc loc, Island toTest)
 {
     return(toTest.getBlockAt(ref loc));
 }