Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 Fasool-Lool · Sep 09, 2016 at 04:21 PM · shadersparticlesgrassblooddetailmesh

Recolor Grass

Hey, I'm having some tough time adding grass to my game. I wanted each individual grass initial color to be the same as the ground's texture color at the exact spot. I managed doing it - making a grass particle system and changing ParticleSystem.Particle.color for each particle (don't know if its the most efficient way...).

The problem is that I want each individual grass particle (or maybe I'll be better off using detail mesh instead?) to change its color to red whenever a blood splatter decal touches it. Now, doing a loop through all the grass particles to determine which one is touching the decal is really going to cost performance.

Can you suggest any sufficient (or possible) way? (I'm guessing you could somehow do it using shaders and grass detail mesh, though I know nothing about them.)

Here's my current code:

 using UnityEngine;
 using System.Collections;
 using System.Collections.Generic;
 
 
 public class Grass_Particles_controller : MonoBehaviour {
 
 
     public float planeWidth;
     public float planeHeight;
     [Space(5)]
     public float rotationMin;
     public float rotationMax;
     [Space(5)] 
     public float strechMin;
     public float stretchMax;
     [Space(5)]
     public int grassAmount;
     [Space(10)]
     [Header("Texture")]
 
     public GameObject texturePlane;
 
 
     ParticleSystem ps;
 
 
     ParticleSystem.Particle[] grassList;
 
     bool toSetParticles = false;
 
 
     int texW,texH;
     Color32[] colorGrid;
 
     void Start()
     {
 
         gameObject.GetComponent<ParticleSystemRenderer>().pivot = new Vector3(0f,-0.5f,0f);
         ps = gameObject.GetComponent<ParticleSystem>();
 
         GetColorGrid();
         GenerateGrass();
 
 
     }
 
     void Update()
     {
         
 
         if(toSetParticles){ ps.SetParticles(grassList,grassAmount); toSetParticles=false;}
 
         }
 
 
 
     void GenerateGrass()
     {
         grassList = new ParticleSystem.Particle[grassAmount];
 
         ps.Clear();
 
         for(int i = 0; i<grassAmount; i++)
         {
             Vector3 gPosition =  new Vector3(Random.Range(-(planeWidth/2),planeWidth/2),0,Random.Range(-(planeHeight/2),planeHeight/2));
             grassList[i].size = Random.Range(strechMin,stretchMax);
             grassList[i].position = gPosition;
             grassList[i].rotation = Random.Range(rotationMin,rotationMax);
 
             Color32 newColor = GetPointColorFromPlane(gPosition);
             grassList[i].color = (Color)newColor;
 
         }
         toSetParticles = true;
 
     }
 
 
     void RecalculateColors()
     {
 
         ps.Clear();
 
         for(int i = 0; i<grassAmount; i++)
         {
             Color32 newColor = GetPointColorFromPlane(grassList[i].position);
             grassList[i].color = (Color)newColor;
 
         }
         toSetParticles = true;
     }
 
     void GetColorGrid()
     {
         Texture2D planeTexture = texturePlane.GetComponent<Renderer>().material.mainTexture as Texture2D;
         texW = planeTexture.width;
         texH = planeTexture.height;
         colorGrid =  planeTexture.GetPixels32();
     }
 
     Color32 GetPointColorFromPlane(Vector3 grassPosition)
     {
         RaycastHit[] hits;
         hits = Physics.RaycastAll(grassPosition+Vector3.up*0.001f,Vector3.down);
         Color32 target = Color.white; 
         foreach (RaycastHit hit in hits)
         {
             if(hit.transform.tag == "Floor")
             {
                 Vector2 uvCoord = hit.textureCoord;
                 int texelX = Mathf.FloorToInt(uvCoord.x * texW);
                 int texely = Mathf.FloorToInt(uvCoord.y * texH);
                 target = colorGrid[texely*texW + texelX];
             }
         }
         return target; 
     }
 
 }
 

thanx!

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Mask particles inside an object with a transparent shader 0 Answers

Is it possible to make my additive-shaded particles only add to each other? 2 Answers

Soft particles not appearing when they collide with distortion effect 1 Answer

Grass system? 2 Answers

Detail brush not rendering correctly in game 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