• 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.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Merging Textures At Runtime - Not Correct? 1 Answer

Painting stencil on a surface. 6 Answers

Convert a byte array to color data 0 Answers

Setting pixels on a texture? 2 Answers

getPixel/setPixels or stencil eraser brush 2 Answers

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges