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
3
Question by Simon Wittber · Nov 08, 2010 at 01:08 PM · shadercolor

What is the correct way to mix colours in a surface shader?

Most shader examples multiply colour values.

Eg, Mixing Gray with Gray should give Gray, however when multiplying the colour values you get (0.25, 0.25, 0.25) = (0.5, 0.5, 0.5) * (0.5, 0.5, 0.5) which is a darker gray!

What is the correct way to mix colours in a shader?

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

1 Reply

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

Answer by skovacs1 · Nov 08, 2010 at 09:12 PM

Mixing is a really very broad and naive description and because of this "correct" depends on what exactly you mean.

Multiplying, adding, subtracting, dividing, signed addition, and lerping are all forms of mixing. There any number of different kinds of mixing as determined by your mixing function.

  • If you wanted both to have the same contribution to the final output, you could do something like (colorA + colorB) * 0.5.
  • If you wanted to lerp them together based on some value such as alpha, you could do Lerp(colorA, colorB, mixAmount)
  • You could multiply the colors by their alphas, add them together and set the alpha to be the addition of the two alphas half4((colorA.rgb*colorA.a+colorB.rgb*colorB.a),colorA.a+colorB.a).

Lots of shaders do any number of different things. Multiplying will darken the colour and in many cases, that is what is needed, especially when applying lighting. Adding will brighten the colour which would be used for things like emission. If you need something different, then write your shader to do something different.

Comment
Add comment · Show 1 · 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 Simon Wittber · Nov 10, 2010 at 06:49 AM 0
Share

Excellent, this is a great answer, thankyou!

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

1 Person is following this question.

avatar image

Related Questions

Material doesn't have a color property '_Color' 4 Answers

Need help with using world position in shader 1 Answer

Strange artifacts on Vertex Color Shader 0 Answers

Materials are colored differently on rotated objects 1 Answer

How do I invert the color of ui text to make it more readable, on a messy background? 4 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