Package me.daddychurchill.CityWorld.Plats.Astral.AstralBuriedRoadLot

Examples of me.daddychurchill.CityWorld.Plats.Astral.AstralBuriedRoadLot.SidewalkStyle


          // get the height info for this chunk
          heights = HeightInfo.getHeightsFaster(generator, blockX, blockZ);
          if (!heights.anyEmpties) {
           
            // sidewalks?
            SidewalkStyle sidewalks = SidewalkStyle.NONE;
            if (x == 2 || x == PlatMap.Width - 3) {
              sidewalks = SidewalkStyle.EASTWEST;
              if (z == 2 || z == PlatMap.Width - 3)
                sidewalks = SidewalkStyle.INTERSECTION;
            } else if (z == 2 || z == PlatMap.Width - 3)
View Full Code Here

TOP

Related Classes of me.daddychurchill.CityWorld.Plats.Astral.AstralBuriedRoadLot.SidewalkStyle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.