Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
  • Help Room /
avatar image
0
Question by Der_Kevin · Jan 26, 2017 at 04:49 PM · enumenumerate

check enum from another script?

hey. i have this enum in a script:

 public class TeamSelectUi : MonoBehaviour {
 
     [Header("Player 1")]
     public enum PlayerOneTeam {Red, Blue, None};
     public PlayerOneTeam teamPlayerOne = new PlayerOneTeam();
 

and i wanna check in another script what the current PlayerOne Team is, like this:

 if (TeamSelectUi.PlayerOneTeam == TeamSelectUi.PlayerOneTeam.None) {
                 //do something
             }

but i get the error "An object reference is required to access non-static member `TeamSelectUi.teamPlayerOne'" what am i doing wrong?

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 Landern · Jan 26, 2017 at 05:25 PM

The property is an Instance property and not static(value shared among the instances, also known as a class variable). So you either need to use GetComponent to get a reference to the TeamSelectUi script or you need to make the variable static so it's accessiable on the class.

To make it static(which means all instances of TeamSelectUi will share the same property) you would:

 public static PlayerOne {Red, Blue, None};

and you could access like you stated in your second code snippet.

Or you need to get the component of whatever game object it's attached to using GetComponent, but don't know where the component exists in your implementation.

 TeamSelectUi teamselect = someGameObject.GetComponent<TeamSelectUi>();

then get the member like normal.

 teamselect.PlayerOneTeam

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 Der_Kevin · Jan 26, 2017 at 05:41 PM 0
Share

hey, thanks. i tried you second approach. so creating a public GameObject $$anonymous$$mui;

and then

 TeamSelectUi $$anonymous$$mselect = $$anonymous$$mui.GetComponent<TeamSelectUi>();
 
             if ($$anonymous$$mselect.PlayerOneTeam == $$anonymous$$mselect.PlayerOneTeam.None) {
                 //do something
             }

but then i get "PlayerOneTeam': cannot reference a type through an expression; try `TeamSelectUi.PlayerOneTeam' ins$$anonymous$$d "? thanks!

avatar image Landern Der_Kevin · Jan 27, 2017 at 07:23 PM 0
Share

Should you compare the field($$anonymous$$mPlayerOne) against the enum(Which you've called PlayerOneTeam)?

  TeamSelectUi $$anonymous$$mselect = $$anonymous$$mui.GetComponent<TeamSelectUi>();
  
  if ($$anonymous$$mselect.$$anonymous$$mPlayerOne == $$anonymous$$mselect.PlayerOneTeam.None) {
       //do something
  }

in the case above you're comparing the enum type against an enum value of None, you can't.

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

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

Related Questions

unable to add new categories to enum 1 Answer

How to limit the types shown at the inspector in a public enum based on another public enum type selected? 1 Answer

Interfaces vs methods selection using if(enumerations) 0 Answers

Enum filter for Item system 1 Answer

What should I use to store item stats? List, Arrays or something else? 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