Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • 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
0
Question by Legnar · Apr 21, 2013 at 05:19 PM · meshesminecraft

Using Meshes To Generate Cube Word?

I want to be able to generate a cube world, like minecraft using meshes. This code makes a cube. If i add this to a gameobject, how can i add another mesh to the mesh without assigning it to a new gameobject?

 public Mesh AddMesh(Vector3 position)
 {
     Mesh returnMesh = new Mesh();
     returnMesh.name = "Mesh2" + position;
         
         Vector3[] vertices = new Vector3[8] { new Vector3(Mathf.Floor(position.x / size) * size, position.y, Mathf.Floor(position.z / size) * size), 
                                 new Vector3((Mathf.Floor(position.x / size) + 1) * size, position.y, Mathf.Floor(position.z / size) * size),
                                 new Vector3(Mathf.Floor(position.x / size) * size, position.y, (Mathf.Floor(position.z / size) + 1) * size), 
                                 new Vector3((Mathf.Floor(position.x / size) + 1) * size, position.y, (Mathf.Floor(position.z / size) + 1) * size), 
                                 new Vector3((Mathf.Floor(position.x / size) + 1) * size, position.y+1, (Mathf.Floor(position.z / size) + 1) * size),
                                 new Vector3((Mathf.Floor(position.x / size) + 0) * size, position.y+1, (Mathf.Floor(position.z / size) + 1) * size),
                                 new Vector3((Mathf.Floor(position.x / size) + 0) * size, position.y+1, (Mathf.Floor(position.z-1 / size) + 1) * size),
                                 new Vector3((Mathf.Floor(position.x / size) + 1) * size, position.y+1, (Mathf.Floor(position.z-1 / size) + 1) * size)
         };
  
     int[] triangles = new int[39] { 0, 2, 1, 1, 2, 3,2,3,4,4,5,2,5,0,2,5,6,0,6,7,0,0,7,1,3,4,1,1,7,4,6,4,7,4,6,5,1,4,3 };
  
    
  
     returnMesh.vertices = vertices;
     returnMesh.triangles = triangles;
     
  
         
    
     returnMesh.RecalculateNormals();
      
    return returnMesh;
  
 }
Comment
Add comment
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

2 Replies

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by DESTRUKTORR · Apr 21, 2013 at 06:37 PM

Basically it wouldn't be much different than this, except you'll be combining two meshes. There's a two ways you could do this. One way would be to use Unity's built in system, found here. The other option would be to simply take two meshes, and combine their triangles, uvs, and vertices into a third mesh, then return that object. This would get considerably more complicated with the triangles, however, so I might suggest the former.

Comment
Add comment · Share
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
avatar image
0

Answer by Legnar · Apr 21, 2013 at 08:24 PM

thank you, but how do i add the second mesh as a child of the first one?

Comment
Add comment · Share
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

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.

Follow this Question

Answers Answers and Comments

12 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

Related Questions

A node in a childnode? 1 Answer

This script does not work propely in my game 1 Answer

Block Placing Script Help 1 Answer

Minecraft-like block placement/deletion help 1 Answer

Generating Meshes Is Slow 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