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 Cyber_Defect · Sep 13, 2013 at 01:20 AM · colorenumconstant

Enumerated Colors

Lets try this again.

I want to use an enum of colors but System.Drawing.KnownColor (http://msdn.microsoft.com/en-us/library/system.drawing.knowncolor.aspx) is not supported in Unity.

What is my best option?

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

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by Cyber_Defect · Sep 13, 2013 at 02:42 AM

I guess there is an easy solution afterall, I just need to use ConsoleColor instead of Color.

 public enum RarityTypes             {Common = ConsoleColor.Gray, Enchanted = ConsoleColor.White, Rare = ConsoleColor.Green, Heroic = ConsoleColor.Blue, Legendary = ConsoleColor.DarkMagenta, Unique = ConsoleColor.Yellow};
Comment
Add comment · 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
0

Answer by sooncat · Sep 13, 2013 at 03:10 AM

ConsoleColor is Different from Color.

I'd like to use this way(Create a Color file by VS)

             System.Array colorsArray = Enum.GetValues(typeof(KnownColor));
             KnownColor[] allColors = new KnownColor[colorsArray.Length];
 
             Array.Copy(colorsArray, allColors, colorsArray.Length);
             for (int i = 0; i < allColors.Length; i++)
             {
                 Color c = Color.FromName(allColors[i].ToString());
 
                 //first way :  crate an enum
                 Console.WriteLine(allColors[i] + " = " + c.ToArgb() + ",");
                 
                 //second way : crate a class
                 Console.WriteLine("public static Color " + allColors[i] + " = new Color32(" + c.R + "," + c.G + "," + c.B + "," + c.A + ");");
             }
Comment
Add comment · Show 2 · 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 Cyber_Defect · Sep 13, 2013 at 04:52 AM 0
Share

How do you get $$anonymous$$nownColor to work in $$anonymous$$onoDevelop/unity?

avatar image sooncat · Sep 13, 2013 at 05:45 AM 0
Share

The code works in VisualStudio not Unity. $$anonymous$$y destination is create a class which has an enum of color value. The class may works in Unity seperately.

Just Like this:

 public enum $$anonymous$$nownColor
     {
         ActiveBorder = -2830136,
         ActiveCaption = -16755485,
         ......
         $$anonymous$$enuBar = -1250856,
         $$anonymous$$enuHighlight = -13538619,
     }

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

16 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 avatar image avatar image avatar image

Related Questions

negatives value in an enum, constant? how to set a negative value 2 Answers

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

Changing two different objects renderer colour 1 Answer

UIElements EnumField data binding 0 Answers

Problem with second enum selection inspector 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