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 /
avatar image
0
Question by AyeEmTeeBee · Feb 20, 2018 at 03:40 AM · variableboolaccessread

Read boolean from parent's script

I shouldn't be asking this, because accessing public variables from parent script should not be THIS difficult. I could not find a single crystal clear answer on what I'm suppose to do.

For my case, when the player touches a specific surface, a boolean in the parent script named "flip" is set to true (I've done this part already). The camera of the player is suppose to check if "flip" is set to true, and set rotation to 180 degrees on the z-axis if so.

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 Ginxx009 · Feb 20, 2018 at 03:49 AM 0
Share

Could you paste your code on how you touch a specific surface :) So that we can fit it to your code :)

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by Vincent1236 · Feb 20, 2018 at 11:40 AM

The easiest way to do this is by adding a public variable (of the same type as the script in your parent) to the script on the camera. Something like this:

 public PlayerController playerController;
 
 void Update () 
 {
         if (playerController.flip)
             transform.localEulerAngles = new Vector3(0, 0, 180);
         else
             transform.localEulerAngles = new Vector3(0, 0, 0);
 }


Where PlayerController should be the name of the script that has the public flip variable. Then simply in the editor drag it in.

If you do not want to drag it in, use GetComponentInParent() in the start method to get a reference to it on game startup.

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 Positive7 · Feb 20, 2018 at 03:56 AM

Assuming your parent script looks something like this :

 public ParentScript : Monobehaviour {
 public bool flip;
 //...
 }
 

Then in child script :

 private ParentScript parentScript; // Or make it public and assign it in Inspector
 
     private void Start()
 {
     parentScript = FindObjectOfType(typeof(ParentScript)) as ParentScript; //If assigned in inspector delete this
     //or
     parentScript = transform.parent.GetComponent<ParentScript>(); //If assigned in inspector delete this
 }
 
     private void Update()
     {
         if (parentScript.Flip)
         {
             //DoSomething
         }
         else
         {
             //DoSomeething else
         }
     }

Or it could be done with static bool as well. There could be more efficient way if you would provide some code.

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

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

82 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 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

Can I make variables visible to other scripts without making them visible in the Inspector? 1 Answer

Access and Change variables from other Scripts? 2 Answers

Strange persistent variable duplication 0 Answers

How to make an if command check a bool (or any other variable) only if it has changed 1 Answer

SOLVED - Accessing a C# script value from another GameObject's JavaScript 2 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