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 sgoodspeed · May 05, 2013 at 07:06 PM · shadertexturematerialtransparencyalpha

(c#) Transparency Problem - Toggle not Gradient

Hi guys. I'm trying to fade a material on a plane from semi-opaque to transparent when the game slows down, as tied to the Time.timescale variable.

The problem is that even though the alpha channel on the material is changing gradually (I can see when I'm printing it), the plane is just flickering between totally opaque at 255 and totally transparent at 0.

I tried a bunch of different types of transparent shaders, but the one I'm using right now is Transparent/diffuse, and I made sure the texture was a png. Any help would be much appreciated, thank you very much!

Here's the code where I'm setting Time.timescale:

 public void slowDown ()
     {    //As you can see, slowDown changes the speed gradually
         if (timeStop) {
             if (Time.timeScale >= .2f) {
                 Time.timeScale -= .05f;    
             } else if (Time.timeScale < .2f) {
                 Time.timeScale = .2f;
             } 
         } else if (!timeStop) {
             if (Time.timeScale < 1) {
                 Time.timeScale += .1f;    
             } else if (Time.timeScale >= 1){
                 Time.timeScale = 1;
                 
             }
                 
         }

Here's where I'm doing my alpha assignments:

 void Update ()
     {
         if (xa.timeStop) {
             if (renderer.material.color.a != 255 - (255 * Time.timeScale)) {
                 renderer.material.color = new Color (renderer.material.color.r, renderer.material.color.g, renderer.material.color.b, tempAlph);
                 tempAlph += 40;
             }
         }
         else{
         if (renderer.material.color.a >0){
                 renderer.material.color = new Color (renderer.material.color.r, renderer.material.color.g, renderer.material.color.b, tempAlph);
                 tempAlph -= 40;
             }
                 
         }
         
                 
     }
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 Bunny83 · May 05, 2013 at 07:08 PM

This is simply because the Color struct uses float values, so values between 0 and 1.

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 sgoodspeed · May 05, 2013 at 07:49 PM 0
Share

It worked! Thanks. I was reading about alpha before I started writing and I guess assumed it went from 0-255 here too

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

13 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Add transparency to this shader? 0 Answers

How do you make an X-ray vision following the mouse? 1 Answer

Boat wake/foam 0 Answers

Changing material color´s alpha in self iluminated shader 1 Answer

Soft edge shader - Issues when objects using same material overlap 0 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