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 OutOfRam · Nov 09, 2015 at 01:03 PM · c#localsnapsnappinglocalposition

Moving an object a fixed amount on its local axis

This does not seem like it should be a super hard thing to do but after 10 straight hours of trying to figure this out, I am still stuck. I am attempting to create a sort of object snap to position feature in my game, where when you point at the side of an object, and click, another object will instantiate there with the same rotation but offset on the transform. I already got the rotation part to work fine, however the movement in the offset is always preformed in world space, meaning that if the object you are snapping to is rotated at all the instantiated object will not be placed right beside it. I have tried using localPosition and it does not seem to help. Here is the code that I have so far...

     void snap ()
 {
     playerRot = hit.transform.root.GetComponent<Transform>().eulerAngles.y;
     pos.rotation = Quaternion.AngleAxis(playerRot, Vector3.up);
     
     int sidenum = hit.transform.GetComponent<DB_PlacementArea>().Side;
     float offset = hit.transform.GetComponent<DB_PlacementArea>().Offset;
     
     Vector3 tempPos = hit.transform.root.localPosition;
     Vector3 tempAdd = 
     
     if (sidenum == 1)
     {
         tempPos.z += offset;
         pos.position = tempPos;

     }
     else if (sidenum == 2)
     {
         tempPos.x += offset;
         pos.position = tempPos;
     }
     else if (sidenum == 3)
     {
         tempPos.z -= offset;
         pos.position = tempPos;
     }
     else if (sidenum == 4)
     {
         tempPos.x -= offset;
         pos.position = tempPos;
     }
     
     ghost.SetActive(true);
     ready = true;
 }
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
2
Best Answer

Answer by toromano · Nov 09, 2015 at 02:03 PM

If you want to offset position relative to a gameobject, you need to move your relative position from local to world. Let's sat you want to position your gameobject with offset Vector3(1.0f,.0f,.0f):

 Transform target; // transform matrix of the gameobject that you will position relatively
 Vector3 offset = new Vector3(1.0f,.0f,.0f);
  transform.position = target.TransformPoint(offset); // this will transform your local position to world position

Hope that helps.

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 OutOfRam · Nov 09, 2015 at 05:03 PM 0
Share

Thanks a lot @toromano You may have just saved me 10 hours of work right there. It works perfectly now !

avatar image toromano OutOfRam · Nov 10, 2015 at 06:39 AM 0
Share

You are wellcome :)

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Need help with snapping Prefab assets to grid in game 2 Answers

true grid snapping in editor ? 1 Answer

Smooth snapping rotation 1 Answer

Snap direction to angles + shifting 0 Answers

How would I Consistantly 'Snap' a UI Element to the Edge of a Camera? 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