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 ashjack · Jun 07, 2014 at 09:58 AM · c#errorcustom-inspectorenumpopup

Enumerations in custom inspector C#

Hi again. I am trying to make a custom inspector, and it is working so far, it has three strings and one enum, but no matter what I do, the enum refuses to work and gives me this error:

 Assets/Editor/ItemRegistryEditor.cs(25,17): error CS0266: Cannot implicitly convert type `System.Enum' to `ItemRegistryEditor.Editortype'. An explicit conversion exists (are you missing a cast?)

Here is my code:

 using UnityEngine;
 using System.Collections;
 using UnityEditor;
 
 
 
 [CustomEditor(typeof(ItemRegistry))]
 public class ItemRegistryEditor : Editor 
 {
     public enum Editortype{Normal, Armour, Weapon, Food};
     
     public string EditorItemName;
     public string EditorItemLore;
     public Editortype EditorItemType;
     public bool EditorExtraInfo;
     public string EditorItemPickupName;
     
     public override void OnInspectorGUI()
     {
         ItemRegistry itemRegistryScript = (ItemRegistry)target;
         
         EditorGUILayout.LabelField("Required Settings", EditorStyles.boldLabel);
         EditorItemName = EditorGUILayout.TextField("Item Name", EditorItemName);
         EditorGUILayout.LabelField("Item ID", itemRegistryScript.ItemID.ToString());
         EditorItemType = EditorGUILayout.EnumPopup("Item Type", EditorItemType);
         
         EditorExtraInfo = EditorGUILayout.BeginToggleGroup("Optional Settings", EditorExtraInfo);
             EditorItemLore = EditorGUILayout.TextField("Item Lore", EditorItemLore);
             EditorItemPickupName = EditorGUILayout.TextField("Item Pickup Name", EditorItemPickupName);
         
         if(GUILayout.Button("Create Item Using These Settings"))
         {
             Debug.Log(EditorItemName);
             Debug.Log(EditorItemLore);
             Debug.Log(EditorItemPickupName);
         }
     }
 }
 
Comment
Add comment · Show 1
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 huulong · Sep 13, 2014 at 09:49 AM 0
Share

Possible duplicate of http://answers.unity3d.com/questions/726010/type-cast-to-a-enum.html

2 Replies

· Add your reply
  • Sort: 
avatar image
2

Answer by Bilelmnasser · Jun 07, 2014 at 11:45 AM

this is your error :

EditorGUILayout.EnumPopup---------> return a System.enum in line 25 you try to cast the returned result from this method(EditorGUILayout.EnumPopup()) which is a System.enum and you affect her to(EditorItemType wich is Editortype type). hope you see what to do next

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 Techn0man · Feb 18, 2018 at 12:59 PM

you have to give it a cast. there are two ways of doing it. here they are.

 #variable# = (#your enum#)#function#;

or you can do

 #variable# = #function# as #your enum#;

this also works with scripts, structs, float, bool, int and so on

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 Bunny83 · Feb 18, 2018 at 08:29 PM 0
Share

While it is true that you need to cast the return type, you have to be careful with "as" casts. They do not work with value types. Since enums are value types (by default just an int value) you can not use an as-cast. You would get a compiler error. Also an as-cast should only be used when you want to do a null check afterwards anyways.

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

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

Related Questions

Multiple Cars not working 1 Answer

Distribute terrain in zones 3 Answers

Making a bubble level (not a game but work tool) 1 Answer

"NullReferenceException: Object reference not set to an instance of an object" with instantiate C# 1 Answer

not all lines of code running c# 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