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 kmccmk9 · Mar 12, 2012 at 04:18 AM · floatslidervaluehorizontal

Slider issues

Hello, I'm trying to create 3 sliders to control the rgb elements of a material. However, using this code below the shaders show up and work but act as though there is only two settings. On or off. It should be a gradual change and I know from debugging that the slider is returning proper float variables so why is it not applying the right colors to my material? The second code is the code I'm using to obtain the rgb values and apply them to my material.

 //HairColorSlider
         if (haircolorcount == 1)
         {
             GUILayout.BeginHorizontal();
             GUILayout.Label("Red:");
             GUILayout.EndHorizontal();
             GUILayout.BeginHorizontal();
             haircolorrslider = GUILayout.HorizontalSlider(haircolorrslider,0.0F,255.0F);
             GUILayout.EndHorizontal();
             GUILayout.BeginHorizontal();
             GUILayout.Label("Green:");
             GUILayout.EndHorizontal();
             GUILayout.BeginHorizontal();
             haircolorgslider = GUILayout.HorizontalSlider(haircolorgslider,0.0F,255.0F);
             GUILayout.EndHorizontal();
             GUILayout.BeginHorizontal();
             GUILayout.Label("Blue:");
             GUILayout.EndHorizontal();
             GUILayout.BeginHorizontal();
             haircolorbslider = GUILayout.HorizontalSlider(haircolorbslider,0.0F,255.0F);
             GUILayout.EndHorizontal();
             debuglabel = "R:" + haircolorrslider + " G:" + haircolorgslider + " B:" + haircolorbslider;
             FemaleHairStyle1Script.ChangeColor(haircolorrslider,haircolorgslider,haircolorbslider);
         }
         if (haircolorcount == 2)
         {
             haircolorcount = 0;
         }

 public void ChangeColor(float rvalue, float gvalue, float bvalue)
 {
     //Color materialcolor = new Color(rvalue,gvalue,bvalue,1);
     materialcolor.r = rvalue;
     materialcolor.g = gvalue;
     materialcolor.b = bvalue;
     foreach(Renderer part in r)
     {
         part.material.color = materialcolor;
     }
 }
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
1
Best Answer

Answer by Berenger · Mar 12, 2012 at 06:34 AM

Color components are [0..1], your sliders are [0..255]

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 kmccmk9 · Mar 12, 2012 at 06:57 AM 0
Share

Oh okay I see thank you I will try that right now

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Slider.value won't change to INT 1 Answer

Problems with pulling a slider value - (Making sensitivity Sliders) 0 Answers

Getting a slider value from a different scene 1 Answer

Slider value not working? 0 Answers

changing a float number by moving arrows (horizontal and vertical input)? 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