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 /
avatar image
0
Question by fahimalavi · Dec 20, 2016 at 06:14 PM · androidtouch controls

Touch flip/slide misses

Hi, I have a game about 20% of time slide or flip to move players in 4 directions misses. I can't understand why touch missing? These two methods are present in touch script that is component of an object present in scene. To check the problem game is present on Google play store

 // Swipe direction is called from main script.cs (component of main player.)
     public static char getDirection()
     {
         char return_status = 'n';
 
         if (SwipeScript.direction != 'n') {
             return_status= SwipeScript.direction;
             SwipeScript.direction ='n';
         }
         return return_status;
     }
 
 // Update is called once per frame
     void FixedUpdate () {
 
         if (Input.touchCount > 0){
 
             foreach (Touch touch in Input.touches)
             {
                 switch (touch.phase)
                 {
                 case TouchPhase.Began :
                     /* this is a new touch */
                     isSwipe = true;
                     fingerStartTime = Time.time;
                     fingerStartPos = touch.position;
                     break;
 
                 case TouchPhase.Canceled :
                     /* The touch is being canceled */
                     //isSwipe = false;
                     break;
 
                 case TouchPhase.Ended :
 
                     float gestureTime = Time.time - fingerStartTime;
                     float gestureDist = (touch.position - fingerStartPos).magnitude;
 
                     if (isSwipe && gestureTime < maxSwipeTime && gestureDist > minSwipeDist){
                         Vector2 direction = touch.position - fingerStartPos;
                         Vector2 swipeType = Vector2.zero;
 
                         if (Mathf.Abs(direction.x) > Mathf.Abs(direction.y)){
                             // the swipe is horizontal:
                             swipeType.x = direction.x;
                         }else{
                             // the swipe is vertical:
                             swipeType.y = direction.y;
                         }
 
                         if(swipeType.x != 0.0f){
                             if(swipeType.x > 0.0f){
                                 // MOVE RIGHT
                                 SwipeScript.direction ='r';
                             }else{
                                 // MOVE LEFT
                                 SwipeScript.direction ='l';
                             }
                         }
 
                         if(swipeType.y != 0.0f ){
                             if(swipeType.y > 0.0f){
                                 // MOVE UP
                                 SwipeScript.direction ='u';
                             }else{
                                 // MOVE DOWN
                                 SwipeScript.direction ='d';
                             }
                         }
                         isSwipe = false;
                     }
 
                     break;
                 }
             }
         }
 
     }


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

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

104 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 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 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

Changing Screen Orientation causes touch coordinates being wrong 0 Answers

OnDrag methods not being called on Android in Unity 2018.3.5f1 3 Answers

InputField not triggering on screen keyboard in Android 0 Answers

EventSystem.current.IsPointerOverGameObject(t.fingerId) - Not working on Android builds - Unity 2 Answers

How to drag an object along a path using touch controls in specific areas? 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