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 Sil3nt.Pr0digy · Nov 19, 2012 at 08:13 AM · gameobjectchildsmoothsmoothdamptransformdirection

Having a child gameobject reside within restricted cooridinates?

I have a child gameobject that I want to smoothly move to and fro, such that it will attempt to stay within predefined coordinates.

 if(child != null)
     {
         float curX = child.transform.localPosition.x;
         float curY = child.transform.localPosition.y;
         float curZ = child.transform.localPosition.z;
         float tempX = 0.0f;
         float tempY = 0.0f;
         float tempZ = 0.0f;
         xVelocity = child.transform.InverseTransformDirection(child.rigidbody.velocity).x;
         yVelocity = child.transform.InverseTransformDirection(child.rigidbody.velocity).y;
         zVelocity = child.transform.InverseTransformDirection(child.rigidbody.velocity).z;
         
         if(curZ > 1.6f)                
         {
             tempZ = -(Mathf.SmoothDamp(curZ, 1.5f, ref zVelocity, 0.01f)*2);
         }
         else if(curZ < 1.4f && curZ > 0.3f)
         {
             tempZ = (Mathf.SmoothDamp(curZ, 1.5f, ref zVelocity, 0.01f)*2);
         }
         else
         {
             tempZ = 0;
         }
         if(curX > 0.1f)
         {
             tempX = -(Mathf.SmoothDamp(curX, 0.0f, ref xVelocity, 0.1f)*2);                
         }
         else if(curX < -0.1f)
         {
             tempX = -(Mathf.SmoothDamp(curX, 0.0f, ref xVelocity, 0.1f)*2);
         }
         else
         {
             tempX = 0;
         }
         if(curY > 4.1f)
         {
             tempY = (Mathf.SmoothDamp(curY, 4.0f, ref yVelocity, 0.2f)*2);
         }
         else if(curY < 3.9f)
         {
             tempY = -(Mathf.SmoothDamp(curY, 4.0f, ref yVelocity, 0.2f)*2);
         }
         else
         {
             tempY = 0;
         }
         
         Vector3 tempVec = new Vector3(tempX,tempY,tempZ);
         child.transform.TransformDirection(tempVec);
         child.rigidbody.velocity = tempVec;
     }

However, using the code above, the child gameobject does not stay in the correct location. I am converting the velocity to local, and then back to world (which should make it function correctly, I think).

Am I overlooking something? When you face due north, the code executes properly, however, if you rotate, the child will function strangely. and if you are facing due south, the code will operate the opposite, with the exemption of the following code:

 else if(curZ < 1.4f && curZ > 0.3f)
 {
         tempZ = (Mathf.SmoothDamp(curZ, 1.5f, ref zVelocity, 0.01f)*2);
 }

What am I doing incorrectly?

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 sparkzbarca · Nov 19, 2012 at 03:46 PM 0
Share

your not taking into account its rotation relative to the parent.

The moment you rotate the parent its north isn't the childs north.

You can't use the parents positional information without using its rotational information probably.

$$anonymous$$aybe you should just child a collider that bounds the limit and when you hit the collider you impart force that sends you in the opposite direction of your current heading?

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

10 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

Related Questions

Very Erratic behavior when parenting an object 0 Answers

change pivot of parent game object 1 Answer

Finding Children question 3 Answers

A theory / question about improving game performance 1 Answer

Physics.SphereCastAll to get rigidbody's like OnCollisionEnter 3 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