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 getgcs · Jan 16, 2013 at 03:58 PM · objectmovemove object

Move object in front of another

How can you move an object to another but have it go in front of the other object. (in front of the target)

Here is the code I wrote that moves the object to my hand:

 void OnMouseUpAsButton() {
         target = GameObject.Find("hand");
         transform.position = new Vector3(target.transform.position.x, target.transform.position.y, target.transform.position.z);
         transform.parent = target.transform;
         
         
     }
Comment
Add comment · Show 2
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 robertbu · Jan 16, 2013 at 04:15 PM 0
Share

How depends on what you mean by "in front." It could be simply offsetting on the Z axis, or it could be in relation to the camera, or it could be in relation to the forward vector of the target. Also how much in front?

avatar image getgcs · Jan 16, 2013 at 04:23 PM 0
Share

in relation to the camera and in front just enough so it touches the hand and doesnt go inside of the hand. (on the edge of the hand)

1 Reply

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by robertbu · Jan 16, 2013 at 05:11 PM

This code casts a ray from the target to the camera and then places the game object 'distance' from the target's origin toward the camera.

 Ray ray = new Ray(target.position, Camera.mainCamera.transform.position - transform.position);
 transform.position = ray.GetPoint(distance);

Note if you are really using a hand, and if that hand rotates a lot, things might look weird. For example, if the hand is turned around backwards, then the ball will be 'distance' towards the camera from the back of the hand. And since a hand is not uniform, if the hand is turned sideways, the ball likely will be in the hand. I'm not sure what you are doing, but if the ball is of a fixed size, and if you want the ball in the palm of the hand, you might be better off creating an empty game object, make the empty game object a child of the hand, move the empty game object so that it is above the palm of the hand, and then use this empty game object as the target.

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

9 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

How to move a cube to another cube 2 Answers

Decrease distance between 2 objects 3 Answers

How to move an object in world with script 1 Answer

Animate an object to a new position... 1 Answer

Will this code move an object 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