Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 Pibio · Sep 08, 2014 at 06:32 AM · androidcontrollertouches

Controller 2D Game touches

Well, i'm really sad cuz, i have a week try to finish my game for android.. but the controllers are not working good the player walk and fly but, its not working together fly and walk somebody help me out using ignore the first controllers just the touches the first controllers work good on my pc.

UnityEngine; using System.Collections;

public class PlayerController : MonoBehaviour {

 public Vector2 moving = new Vector2();
 public GUITexture right;
 public GUITexture left;
 public GUITexture up;

 // Use this for initialization
 void Start () {
     
 }
 
 // Update is called once per frame
 void Update () {
             moving.x = moving.y = 0;

     if (Input.GetKey ("right")) {
         moving.x = 1;
     } else if (Input.GetKey ("left")) {
         moving.x = -1;
     }
     
     if (Input.GetKey ("up")) {
         moving.y = 1;
     } else if (Input.GetKey ("down")) {
         moving.y = -1;
     }
 
 

     bool isLeftPressed = false;
     bool isRightPressed = false;
     bool isUpPressed = false;

     foreach (Touch touch in Input.touches)
     {
         // Only process touches that aren't in the ended phase
         if (touch.phase == TouchPhase.Ended)
             return;
         
         if (left.guiTexture.HitTest(touch.position))
             isLeftPressed = true;
         
         if (right.guiTexture.HitTest(touch.position))
             isRightPressed = true;
     
         if (up.guiTexture.HitTest(touch.position))
         isUpPressed = true;
     }
     if (isLeftPressed && isRightPressed)
     {
         // Do nothing when both are pressed (move already set to 0)
     }
     else if (isLeftPressed)
     {
         moving.x = -1;
     }
     else if (isRightPressed)
     {
         moving.x = 1;    
     }
     else if (isUpPressed)
     {
         moving.y = 1;
     }

 }

}

Comment
Add comment · Show 1
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 Dark_Seth · Sep 08, 2014 at 06:58 AM 0
Share

You must keep track of each touch, check when that touch begins and ends etc. Like tutorial this below

https://www.youtube.com/watch?v=xuX2T5vS$$anonymous$$Oo

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by Nilsboom · Sep 08, 2014 at 09:53 AM

Try below

if (isLeftPressed && isRightPressed) { // Do nothing when both are pressed (move already set to 0) }

 else if (isLeftPressed && isUpPressed)
 {

    moving.x = -1;

   moving.y = 1;


 }

else if (isRightPressed && isUpPressed) {

    moving.x = 1;

   moving.y = 1;


 }

 else if (isLeftPressed)
 {
     moving.x = -1;
 }
 else if (isRightPressed)
 {
     moving.x = 1;   
 }
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.

Follow this Question

Answers Answers and Comments

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

I Trying to Make a Game for my OUYA 0 Answers

GameObject dropping and laging while dragging on Android 2 Answers

Using Android plugin to access android controller information. 1 Answer

Movement help 2D Android HELP ME 0 Answers

Swipe Android 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