• 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 Uelmuel2 · Oct 07, 2015 at 03:59 PM · rotationgameobjecttouchrigidbody2dvelocity

Rotate Rigidbody2D by Touch

Hello guys, i have a gamblingwheel and i want that the player can rotate it via touch input. Also I want that the wheel continues spinning if the player takes the finger of the display. If the gamblingwheel reach a surtent speed I want to start an animtion.

I tried it very often but i havn't found a solution for this problem :/

If anyone of you now how I can realize this project. I would be very happy if you could answer me. Thank you !

This is what i got so far:

 public void GamblingWheelVelocityUpdate()  //This function is called in the Update() methode
     {
         if (Input.GetTouches().Count == 1)
         {
             Touch t = Input.GetTouches()[0];
             Ray ray = Camera.main.ScreenPointToRay(t.position);
             RaycastHit2D hit = Physics2D.Raycast(ray.origin, Vector3.forward);
             if (hit.collider != null)
             {
                 if(t.phase == TouchPhase.Began) {    }

                 if(t.phase == TouchPhase.Moved)
                 {
                    //Placeholder for the script.
                    //The gamblingwheel variable is called: (rigidbody2D)gamblingWheel.


                 }
             }
         }
     }
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 KwahuNashoba · Oct 12, 2015 at 05:08 PM

You are on the right way although I'm not quite sure what you want to do. Try something like this(this is more a pseudocode so don't just copy/paste it :)):

                 if(t.phase == TouchPhase.Began) 
                 {
                    touchBegin = t.position;
                 }
                  if(t.phase == TouchPhase.Moved)
                  {
                     float touchDelta = (t.position - touchBegin).magnitude;
                     gamblingWheel.AddTorque(touchDelta * Time.deltaTime):
                  }

This will add rotatin force to your object. Of course, this will rotate it in same direction no matter of how you swiped, to change spinning direction you'll have to do additional math

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.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

39 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

How to make GameObject follow with finger without delay? 0 Answers

Why is a gameobject moves at start? 0 Answers

How do I make a 2D spaceship rotate to my mouse? 0 Answers

Inconsistent Velocity? 0 Answers

Custom touch control stops abruptly! 0 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