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 game4444 · Feb 14, 2017 at 10:40 AM · touchswipetouchphase

Unable to use Swipe and Unity UI together

Hi, I want to use swipe for my Player Rotation its working fine. But at the same time i am using Unity Ui Button for firing bullets. The problem is this, if user presses fire button and swipe with other finger it will work fine. But when user is swipe and presses fire button it doesn't work correctly. Here is my swipe code. Anyone please guide me. using UnityEngine; public class SwipeManager : MonoBehaviour { private Vector3 firstpoint; //change type on Vector3 private Vector3 secondpoint; private Vector2 firstPressPos; private Vector2 secondPressPos; Vector2 currentSwipe; public static SwipeManager swipeDirection; public float minSwipeLength = 5f; private float xAngle = 0.0f; //angle for axes x for rotation private float yAngle = 0.0f; private float xAngTemp = 0.0f; //temp variable for angle private float yAngTemp = 0.0f; bool swipeDetection; void Start() { //Initialization our angles of camera xAngle = 0.0f; yAngle = 0.0f; this.transform.rotation = Quaternion.Euler(yAngle, xAngle, 0.0f); swipeDetection = true; // Input.multiTouchEnabled = false; } void FixedUpdate() { //Check count touches

     if (Input.touches.Length > 0) {
         for (int i = 0; i < Input.touches.Length; i++) {
             Touch t = Input.GetTouch (i);

             if (t.phase == TouchPhase.Began) {
                 firstPressPos = new Vector2 (t.position.x, t.position.y);
             }

             if (t.phase == TouchPhase.Ended) {
                 secondPressPos = new Vector2 (t.position.x, t.position.y);
                 currentSwipe = new Vector3 (secondPressPos.x - firstPressPos.x, secondPressPos.y - firstPressPos.y);

                 // Make sure it was a legit swipe, not a tap
                 if (currentSwipe.magnitude < minSwipeLength) {
                     //swipeDirection = SwipeManager.None;

                     return;
                 } else {

                 }


             }
         



         if (Input.touchCount > 0) {
             //Touch began, save position
             if (Input.GetTouch (i).phase == TouchPhase.Began) {
                 firstpoint = Input.GetTouch (i).position;
                 xAngTemp = xAngle;
                 yAngTemp = yAngle;
             }
             //Move finger by screen
             if (Input.GetTouch (i).phase == TouchPhase.Moved) {
                 secondpoint = Input.GetTouch (i).position;
                 //Mainly, about rotate camera. For example, for Screen.width rotate on 180 degree
                 xAngle = xAngTemp + (secondpoint.x - firstpoint.x) * 180.0f / Screen.width;
                 yAngle = yAngTemp - (secondpoint.y - firstpoint.y) * 90.0f / Screen.height;
                 //Rotate camera
                 if (yAngle < 0) {
                     yAngle += 360;
                 }
                 if ((yAngle >= 0 && yAngle >= 320 && yAngle <= 360) || (yAngle <= 360 && yAngle <= 20)) {
                     yAngle = yAngle;
                 } else {
                     yAngle = transform.eulerAngles.x;
                 }
                 this.transform.rotation = Quaternion.Euler (yAngle, xAngle, 0.0f);
             }
         }
     
     }
 }

} }

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

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

Related Questions

Sprite occasionally moving to left when dragging to right 0 Answers

Some things wrong with swipe move! 0 Answers

how to drag a 2d object in one direction but even finger is not over the object,either its up or down than opbject but it should be drag in the direction of moveing finger 0 Answers

2D touch - Why is this movement so jittery? 1 Answer

How can i move just one object ? 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