• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
Question by Greggy · Apr 03, 2014 at 02:43 PM · mapgenerationminecraftblocks

map generation issues

ok so i have a block map generator which goes infinitely how would i get it to limit the Z axis to 10 blocks only no more?

 using UnityEngine;
 using System.Collections;
 using System.Collections.Generic;
 using System;
 using System.Threading;
 
 
 [AddComponentMenu("VoxelEngine/WorldGenerator")]
 public class WorldGenerator : MonoBehaviour {
     
     private Map map;
     private ColumnMap columnMap = new ColumnMap();
     private TerrainGenerator terrainGenerator;
     private TreeGenerator[] treeGenerator;
     private bool building = false;
     
     
     void Awake() {
         map = GetComponent<Map>();
         terrainGenerator = new TerrainGenerator(map);
         
         Block[] woodBlocks = map.GetBlockSet().GetBlocks("Wood");
         Block[] leavesBlocks = map.GetBlockSet().GetBlocks("Leaves");
         
         treeGenerator = new TreeGenerator[ Math.Max(woodBlocks.Length, leavesBlocks.Length) ];
         for(int i=0; i<treeGenerator.Length; i++) {
             Block wood = woodBlocks[ i%woodBlocks.Length ];
             Block leaves = leavesBlocks[ i%leavesBlocks.Length ];
             treeGenerator[i] = new TreeGenerator(map, wood, leaves);
         }
     }
     
     void Update() {
         if(!building) StartCoroutine( Building() );
     }
     
     private IEnumerator Building() {
         building = true;
         Vector3 pos = Camera.mainCamera.transform.position;
         Vector3i current = Chunk.ToChunkPosition( (int)pos.x, (int)pos.y, (int)pos.z );
         Vector3i? column = columnMap.GetClosestEmptyColumn(current.x, current.z, 7);
         
         if(column.HasValue) {
             int cx = column.Value.x;
             int cz = column.Value.z;
             columnMap.SetBuilt(cx, cz);
             
             yield return StartCoroutine( GenerateColumn(cx, cz) );
             yield return null;
             ChunkSunLightComputer.ComputeRays(map, cx, cz);
             ChunkSunLightComputer.Scatter(map, columnMap, cx, cz);
             terrainGenerator.GeneratePlants(cx, cz);
             
             yield return StartCoroutine( BuildColumn(cx, cz) );
         }
         building = false;
     }
     
     private IEnumerator GenerateColumn(int cx, int cz) {
         yield return StartCoroutine( terrainGenerator.Generate(cx, cz) );
         yield return null;
         
         if(treeGenerator.Length > 0) {
             int x = cx * Chunk.SIZE_X + Chunk.SIZE_X/2;
             int z = cz * Chunk.SIZE_Z + Chunk.SIZE_Z/2;
             int y = map.GetMaxY(x, z)+1;
             int index = UnityEngine.Random.Range( 0, treeGenerator.Length );
             treeGenerator[index].Generate(x, y, z);
         }
     }
     
     public IEnumerator BuildColumn(int cx, int cz) {
         List3D<Chunk> chunks = map.GetChunks();
         for(int cy=chunks.GetMinY(); cy<chunks.GetMaxY(); cy++) {
             Chunk chunk = map.GetChunk( new Vector3i(cx, cy, cz) );
             if(chunk != null) chunk.GetChunkRendererInstance().SetDirty();
             if(chunk != null) yield return null;
         }
     }
     
     
 }
 
Comment

People who like this

0 Show 0
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

20 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

map generation issues 0 Answers

World Generation with Interesting Terrain 0 Answers

How would I generate a forest using perlin noise? 1 Answer

C# Better block world loading, generating and saveing 1 Answer

This script really makes my game lag! 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges