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 anosmicAnimator · Nov 15, 2013 at 07:17 PM · 2dcursormouse movement

Make object follow mouse cursor in 2D

I'm makin a game in Unity 2D, and need an object to follow the mouse movement in order to make a custom and changeable cursor. This is the code I have currently. At the moment, it follows the mouse, but is displaced from the mouse about of of the screen to the top left, i.e. if the mouse is at the bottom left of the screen, the cursor is in the middle.

Current Code:

 using UnityEngine;
 using System.Collections;
 
 public class Cursor : MonoBehaviour {
 
     
 
     // Use this for initialization
     void Start () {
         Screen.showCursor = false;
     }
     
     // Update is called once per frame
     void Update () {
         Vector3 mouse = Input.mousePosition;
         mouse = mouse * 10F;
         transform.position = Camera.main.ScreenToViewportPoint(mouse);
 
     }
 }
 
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
0

Answer by fafase · Nov 15, 2013 at 07:37 PM

 mouse = mouse * 10F;

why is that for? If your mouse is at (10,10) then you get at (100,100) then the conversion goes also wrong.

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 anosmicAnimator · Nov 15, 2013 at 07:44 PM 0
Share

We added that because the cursor we made wasn't following at the same speed as the mouse input. Before we put that in, the cursor moved at 1/10 the rate of the mouse.

avatar image fafase · Nov 16, 2013 at 07:43 AM 0
Share

The cursor to be slower is to be expected. I think it is due to how mouse event and guiTexture are handled. Have you tried to use the payer settings: http://docs.unity3d.com/Documentation/$$anonymous$$anual/class-PlayerSettings.html ?

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

18 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

Related Questions

2D Animation does not start 1 Answer

Is it possible to not allow the in-game cursor through certain sprites? 1 Answer

Instantiating a bullet object from a 2D object that looks at mouse cursor 4 Answers

2D platformer cursor 1 Answer

SetCursor is not a member of Cursor 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