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 daipayan123 · Dec 31, 2014 at 12:07 PM · draggame objectmouse-drag

How to click and drag Game Objects?

I am making a game that involves the player clicking and dragging game objects across the scene.

This is what i am trying.

public class Drag : MonoBehaviour {

     private Vector3 screenPoint;
 private Vector3 offset;
 void Start () {
 
 }
 
 void Update () {
 }

 void OnMouseDown()
 {
     screenPoint = Camera.main.WorldToScreenPoint(Input.mousePosition);
     offset = Input.mousePosition - Camera.main.ScreenToWorldPoint(new Vector3(Input.mousePosition.x, Input.mousePosition.y, screenPoint.z));
 }

 void OnMouseDrag()
 {
     Vector3 curScreenPoint = new Vector3(Input.mousePosition.x, Input.mousePosition.y, screenPoint.z);
     Vector3 curPosition = Camera.main.ScreenToWorldPoint(curScreenPoint) + offset;
     transform.position = curPosition;
         

 }

}

but whenever i click on the object, it jumps out of the camera view. If i drag while pressing the mouse button , the object moves with it. I can see in the inspector, but is is out of the camera view. Can somebody help me with this? Thanks in advance

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

2 Replies

· Add your reply
  • Sort: 
avatar image
2

Answer by Mayank Ghanshala · Dec 31, 2014 at 12:37 PM

 void OnMouseDown()
  {
      screenPoint = Camera.main.WorldToScreenPoint(Input.mousePosition);
      offset = Input.mousePosition - Camera.main.ScreenToWorldPoint(new Vector3(Input.mousePosition.x, Input.mousePosition.y, transform.position.z));
  }
  
  void OnMouseDrag()
  {
      Vector3 curScreenPoint = new Vector3(Input.mousePosition.x, Input.mousePosition.y, transform.position.z);
      Vector3 curPosition = Camera.main.ScreenToWorldPoint(curScreenPoint) + offset;
      transform.position = curPosition;
          
  
  }
Comment
Add comment · Show 6 · 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 daipayan123 · Dec 31, 2014 at 12:55 PM 0
Share

Still same problem. I displayed the mouseposition too. Those coordinates are out if the camera view too. But, that should not be the case.

avatar image Wisearn · Dec 31, 2014 at 01:20 PM 0
Share
  offset = Input.mousePosition - Camera.main.ScreenToWorldPoint

this part doesnt make any sense to me, you compare a point on the screen to a point in the world which is 2 entierly separate type of numbers.

avatar image daipayan123 · Jan 21, 2015 at 11:06 AM 3
Share

public class Drag : $$anonymous$$onoBehaviour { private Vector3 screenPoint; private Vector3 offset;

 void Start () {
 }

 
 void Update () {
     
 }



 void On$$anonymous$$ouseDown()
 {
     screenPoint = Camera.main.WorldToScreenPoint(transform.position);
     offset =  transform.position - Camera.main.ScreenToWorldPoint(new Vector3(Input.mousePosition.x, Input.mousePosition.y,screenPoint.z));
 }

 void On$$anonymous$$ouseDrag()
 {
     Vector3 curScreenPoint = new Vector3(Input.mousePosition.x, Input.mousePosition.y, screenPoint.z);
     Vector3 curPosition = Camera.main.ScreenToWorldPoint(curScreenPoint) + offset;
     transform.position = curPosition;
 }

} This is the solution if anyones needs it. just add this to the gameobject and tada!! you can now drag a gameobject without it lagging behind the mouse pointer.

avatar image MattG54321 daipayan123 · Dec 03, 2016 at 08:56 PM 0
Share

Thank you for posting your solution! Really helped me out.

avatar image tsondhi2006 · May 03, 2017 at 05:09 PM 0
Share

Thanx @daipayan123 ....really helped

avatar image julianreid2123 · Jun 17, 2018 at 05:28 PM 0
Share

Thanks for posted this. it really help me a lot.

avatar image
0

Answer by daipayan123 · Dec 31, 2014 at 06:37 PM

I solved it, thanks. Only have to manage the lag of the object from the mouse ppointer. Any tips?

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

30 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

Related Questions

Getting to move object with mouse position? 0 Answers

DragRigidbody behavior attached to multiple rigid bodies causes problems 1 Answer

I'm not sure how to approach this. 2 Answers

Drag GameObject with mouse in just one axis 2 Answers

Click and Drag without rotation 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