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 shadowclasper · Oct 24, 2010 at 06:33 PM · childrenparentingbce0077

Changing the parent's position based on a child's variable

This is the code for my object "Light Switch" attached to an object called "Floor" which is parented to an object called "ShadowWall"

var hit : RaycastHit; var keyCode : KeyCode; var state : int = 1;

function Update () {

if (Input.GetKey (KeyCode.X)){ if (Physics.Raycast (transform.position, new Vector3(0,-1,0), hit, 10) ){ if (hit.collider.gameObject.tag=="Ninja") { if (state==1){ state=1; } if (state==2){ state=1; } } }
}

if (Input.GetKey (KeyCode.Return)){ if (Physics.Raycast (transform.position, new Vector3(0,-1,0), hit, 10) ){ if (hit.collider.gameObject.tag=="Samurai") { if (state==1){ state=2; } if (state==2){ state=2; } } } }
}

I wish to have it so that when the state of "Floor" (the script above is inside the object Floor) is 1, then ShadowWall (the parent) will be positioned right under and behind it. When the state is turned to 2, it will move shadow wall to a position outside of the screen. When changed back to 1, then shadowwall will return to it's position directly behind and under floor.

What's the code I need to use to have ShadowWall call on and check the "State" within it's child's script?

Or would it be easier if ShadowWall were a child of Floor?

edit: This is the coding for the ShadowWall I'm trying to use.

function Update () { var script : Lightswitch; script = GetComponentInChildren(Lightswitch); script.state ();

if (child.state=1){ transform.position.x =830 transform.position.y =2.5 transform. position.z =58.36104 }

if (child.state=2){ transform.position.x =830 transform.position.y =-1000 transform. position.z =58.36104 }

}

How do I get it too call upon the object? please? Really need the help :( I keep getting this message:

Assets/Standard Assets/Scripts/Shadows.js(5,8): BCE0077: It is not possible to invoke an expression of type 'int'.

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

No one has followed this question yet.

Related Questions

The name 'Joystick' does not denote a valid type ('not found') 2 Answers

Parenting Object With Triggers? 1 Answer

C# GameObject.FindGameObjectsWithTag Children 1 Answer

Child objects with different scales move differently? 2 Answers

GetComponent for siblings and parents 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