Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
13 Jun 22 - 14 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 IvanTesseract · Dec 14, 2014 at 09:04 AM · editormeshcolorverticescolour

Changing Mesh Vertex Colors in editor

I am trying to build an editor tool which will change the vertex colors of a chosen Mesh asset according to my calculations

I have the following code:

 using UnityEditor;
 using UnityEngine;
 
 public class GenerateVertexColors : EditorWindow {
     private Mesh[] meshes = new Mesh[4];
 
     [MenuItem ("MGD SS App/GenerateVertexColors")]
     public static void DoGenerateVertexColors () {        
         GenerateVertexColors window = (GenerateVertexColors)EditorWindow.GetWindow (typeof (GenerateVertexColors));
     }
     
     void OnGUI () {
         for (int i = 0; i < meshes.Length; ++i) {
             meshes[i] = EditorGUILayout.ObjectField (meshes[i], typeof (Mesh), false) as Mesh;
         }
 
         if (GUILayout.Button ("Generate")) {
             //MeshFilter[] meshes = modelGameObject.GetComponentsInChildren<MeshFilter>();
             float min, max = 0;
             
             max = float.MinValue;
             min = float.MaxValue;
 
             for (int i = 0; i < meshes.Length; ++i) {
                 Mesh mesh = meshes[i];
                 if (mesh == null)
                     continue;
 
                 for (int j = 0 ; j < mesh.vertexCount ; ++j) {
                     if (mesh.vertices [j].y < min) {
                         min = mesh.vertices [j].y;
                     }
                     if (mesh.vertices [j].y > max) {
                         max = mesh.vertices [j].y;
                     }
                 }
             }
 
             for (int i = 0; i < meshes.Length; ++i) {
                 Mesh mesh = meshes[i];
                 if (mesh == null)
                     continue;
 
                 Color[] colors = new Color[mesh.vertexCount];
 
                 for (int j = 0 ; j < mesh.vertexCount; ++j) {
                     float value = (mesh.vertices[j].y - min) / (max - min) + 0.1f;
                     colors[j] = new Color (value, value, value, 1);
                 }
 
                 mesh.colors = colors;
             }
         }
     }
 }

It only works if I import the materials for the chosen .fbx and if I set them to a shader that uses vertex colors. I tried doing this in runtime, but I have meshes with 40K+ vertices, so it is kinda slow.

Please help.

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

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.

Follow this Question

Answers Answers and Comments

2 People are following this question.

avatar image avatar image

Related Questions

Colored Voxel Meshs 2 Answers

how to remove vertices of a certain colour range from a mesh? 0 Answers

Alter Meshes in Editor by Script without warning 2 Answers

Change color of mesh triangle based on Y position in world space 1 Answer

Color not appearing on created mesh? (only grey) 2 Answers


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