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 vivekagrawal57 · Oct 04, 2015 at 09:58 AM · raycastinputmouseswipelinecast

how to stop mouse from teleporting or detect better, so that i can detect if a swipe of mouse was over object

Hello,

I am creating a golf game where player have to swipe/flick over the golf ball in order to hit the ball, the start position and end position of the flick can be anywhere but the flick/swipe has to go over the ball in its duration

this is the code i have written till now

    void Update() {
             if (Input.GetMouseButtonUp (0) && didPassOver) {
                 didPassOver = false;
                 var endPos = Input.mousePosition;
                 endPos.z = transform.position.z - Camera.main.transform.position.z;
                 endPos = Camera.main.ScreenToWorldPoint(endPos);
                
                 var force = endPos - startPos;
                 force.x = -force.x;
                 force.z = force.y;
                 force.y = 0;
                 force /= (Time.time - startTime);          
                 rb.AddForce(force * factor);
             }
      
             if (Input.GetMouseButtonDown (0)) {
                 startTime = Time.time;
                 startPos = Input.mousePosition;
                 startPos.z = transform.position.z - Camera.main.transform.position.z;
                 startPos = Camera.main.ScreenToWorldPoint(startPos);
             }
         }
      
         void OnMouseOver() {
             if (!didPassOver) {
                 didPassOver = true;
             }
         }

Mostly this is working okay, I just have one problem that if you move mouse fast ( very easy to happen ), then the OnMouseOver doesnt gets called and it doesnt considers it as flick over the object,

any suggestion on to sort this out?

this game is targeted for mobiles mostly, but I am coding keeping in mind that web/pc might be used as well

I am open to completely different solutions as well

Thanks in advance

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 meat5000 ♦ · Oct 04, 2015 at 09:35 AM 0
Share

You can see if there is an intersection of your object between each point.

avatar image vivekagrawal57 meat5000 ♦ · Oct 04, 2015 at 12:32 PM 0
Share

thats exactly what i want to do, but I dont know how, can you please tell more on that

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

How do I use Input.GetButton, instead of OnMouse() 1 Answer

Do touch on point where ray hits 0 Answers

Swipe single object at a time upon touch, not swiping allover the screen 0 Answers

Detect a swipe left or right to move object? 0 Answers

Best way to get a thickness of a wall between 2 points 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