Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 11 Next capture
2021 2022 2023
1 capture
11 Jun 22 - 11 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 Stefano9528 · Jul 16, 2015 at 12:09 PM · androiddestroytouch screendouble-tap

Problem With touch and double touch

Hi everyone. I made a script that should destroy a pointed gameobject with one touch and do the slow motion with a double touch. Now I have made first the destroy on touch script and it worked well. Then I tried add the one touch and double touch script and it doesn't work. I get an error playing: Index out of bounds. The slow motion effect works but it doesn't stop after 3 seconds.The destroy on touch doesn't work at all. Here's my code and thanks for your time:

void Update ()

 {
 #if UNITY_ANDROID || UNITY_IPHONE

     if (Input.touchCount > 0)
 {
     touchDuration += Time.deltaTime;
     touch = Input.GetTouch(0);

     if(touch.phase == TouchPhase.Ended && touchDuration < 0.2f) 
         StartCoroutine("singleOrDouble");
         
     }
 else
     touchDuration = 0.0f;

 #endif

 }


 IEnumerator singleOrDouble(){
     yield return new WaitForSeconds(0.3f);
     if (touch.tapCount == 1) {

         RaycastHit2D hit = Physics2D.Raycast (Camera.main.ScreenToWorldPoint ((Input.GetTouch (0).position)), Vector2.zero);
     
     
         if (hit.collider != null) {
             Destroy (hit.transform.gameObject);
         
         }
     }
     else if(touch.tapCount == 2){

         if (Time.timeScale == 1.0f)

             Time.timeScale = 0.3f;
     
     }
     
     if (Time.timeScale == 0.3f) {
         currentBulletTimer += Time.deltaTime;      
     }      
     
     if ( currentBulletTimer > bulletTimeAllowed ) {
         currentBulletTimer = 0f;
         Time.timeScale = 1.0f;
     }




 }
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 hexagonius · Jul 16, 2015 at 05:17 PM 0
Share

Thats because by the time you do the Raycast and trying to GetTouch(0), your finger might already be off of the screen and therefore there is no touch 0. read the position from touch, which you already saved.

Overall tip: Try to differentiate between single or double touch first, THEN run a coroutine for the single, or for the double touch accordingly.

avatar image Stefano9528 · Jul 16, 2015 at 07:51 PM 0
Share

So I should make two coroutine, one for the single touch and one for the double touch, that are called by a if statement that look for the number of tap?

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Press Back Button Twice to Quit Game 0 Answers

iOs/Android Development 2 Answers

using Contains(gameObject) to find and destroy a gameObject from a list 2 Answers

Android touch 3d Object event 1 Answer

Cannot touch cloned prefabs 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