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 ben.aten · Jun 18, 2015 at 06:54 PM · colortexture2ddrawtexturesetpixelsgetpixels

Changing color of Texture2d with transparency

Hi,

I would like to change the color of the texture 2d image drawn in OnGUI function using GUI.drawtexture. When i change the color using get & set pixel functionality, color of whole image immaterial of its transparency area changed. I would like to change the color of non transparent area alone.

public Texture2D baseTex; public Color[] colors = new Color[1];

void Start() { colors = Color.cyan;

  int mipCount = Mathf.Min(1, baseTex.mipmapCount);
     
     // tint each mip level
     for( var mip = 0; mip < mipCount; ++mip ) 
     {
         var cols = baseTex.GetPixels( mip );
         for( var i = 0; i < cols.Length; ++i ) 
         {
             cols[i] = Color.Lerp(cols[i], colors[mip], 1f);
         }
         baseTex.SetPixels( cols, mip );
     }
     // actually apply all SetPixels, don't recalculate mip levels
     baseTex.Apply(false);

}

void OnGUI() { GUI.DrawTexture(new Rect(100, 0, baseTex.width zoom, baseTex.height zoom), baseTex); }

When i apply the texture in a transparent material its working fine, but i need to draw the color changed texture in OnGUI. Please help me out to resolve the issue.

Regards, Benalt text

screen-shot-2015-06-18-at-50148-pm.png (5.3 kB)
screen-shot-2015-06-18-at-50130-pm.png (4.9 kB)
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
0

Answer by CarterG81 · Jun 20, 2015 at 03:23 AM

Unless I'm misunderstanding the question, you want to change only non-transparent pixels?

I believe that should be as easy as a simple IF statement, using the pixel's ALPHA.

if(alpha = 255) setpixel.

else { don't

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 ben.aten · Jul 01, 2015 at 10:43 AM 0
Share

Hi,

How can i find transparent or non-transparent pixel of a texture

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

Scramble GetPixels function... 1 Answer

Resetting a Material's Texture After GetPixels/SetPixels 1 Answer

Convert 2D array to a 1D array 2 Answers

Merging Textures At Runtime - Not Correct? 1 Answer

Painting stencil on a surface. 6 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