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 vikingnm · Mar 07, 2015 at 06:13 PM · variableenum

get enum value using an object name...

I have a bunch of gameObjects and a "player" moving around that will tag them.

The camera will switch position/rotation based on a List and would like to use an enum to grab the List item holding the position and rotation data. Here is my code snippet...

 enum objects { obj0, anotherObj, yetAnotherOne, okLastObj };
 List<cameras> cameras = new List<cameras>();
 
 void OnTriggerEnter(Collider thisObject) {
     Debug.Log("Hit " + this.name + "! Obj: " + thisObject.gameObject.name);
 
     Camera.main.transform.position = cameras[objects.anotherObj].position;
     Camera.main.transform.rotation = Quaternion.Euler(cameras[objects.anotherObj].rotation);
 }


This works just fine but does anyone know how I can use the object name (this.name)?

tried using the only thing that keeps coming up in search

 objects parsed_enum = (objects)System.Enum.Parse(typeof(objects), this.name, true);

just returns the string value so "anotherObj" and trying to use it in the List call

Debug.Log(cameras[parsed_enum]);

won't compile due to this error (which makes sense since it's a string and not int)

Error CS1503: Argument #1' cannot convert objects' expression to type `int' (CS1503) (Assembly-CSharp)

How do you use a string to get the enum value so something like objects.this.name instead of hard coding it as objects.anotherObj so I can use it in the List call?

I also found a general C# Enum.Parse but Unity doesn't seem to understand the Parse unless there is another using/include that has that in it.

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

0 Replies

· Add your reply
  • Sort: 

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

2 People are following this question.

avatar image avatar image

Related Questions

Using an enum in a class constructor. 1 Answer

Unknown identifier: 'types'. js(38,61) 1 Answer

How to use Enum? 1 Answer

How do I use an enum value as a variable? 3 Answers

Enum-Variable with float 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