Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
13 Jun 22 - 14 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 anunayaggarwal8 · Apr 06 at 02:56 PM · touch controls

i want to run 2d racing game with android control in android and pc control on windows but its not working

can you help me with the error why my game is not running on android with touch controls in android but running in pc with keyboard control fine. here below is code:----------------------------------------------------------------------------------------------------------------------------

using System.Collections; using System.Collections.Generic; using UnityEngine;

public class carController : MonoBehaviour { public float carSpeed; public float maxPos = 1.95f; Vector3 position; public uiManager ui; public AudioManager am;

 bool currntPlatformAndroid = false;

 Rigidbody2D rb;
 
 void awake()
 {
     rb = GetComponent<Rigidbody2D> ();

     #if UNITY_ANDROID
          currntPlatformAndroid = true;

     #else
             currentPlatformAndroid = false;

     #endif
 }
 // Start is called before the first frame update
 void Start ()
 {
     am.carSound.Play ();
   
     position = transform.position;

     if(currntPlatformAndroid == true)
     {
         Debug.Log("Android");
     }

     else
     {
         Debug.Log("Windows");
     }
     
 }

 // Update is called once per frame
 void Update()
 {
     if (currntPlatformAndroid == true)
     {
         //android specific code
         TouchMove();
     }

     else
     {
         position.x += Input.GetAxis("Horizontal") * carSpeed * Time.deltaTime;

         position.x = Mathf.Clamp(position.x, -1.95f, 2.05f);

         transform.position = position;

     }

     position = transform.position;
     position.x = Mathf.Clamp(position.x, -1.95f, 2.05f);

     transform.position = position;
 }

 void OnCollisionEnter2D(Collision2D col)
 {
     if (col.gameObject.tag == "Enemy Car")
     {
         //Destroy(gameObject);

         gameObject.SetActive(false);

         ui.gameOverActivated();
         am.carSound.Stop();
     }
 }

 void TouchMove()
 {
     if(Input.touchCount > 0)
     {
         Touch touch = Input.GetTouch(0);

         float middle = Screen.width / 2;

         if(touch.position.x < middle || touch.phase == TouchPhase.Began)
         {
             MoveLeft();
         } else if (touch.position.x > middle || touch.phase == TouchPhase.Began)
         {
             MoveRight();
         }
     }

     else
     {
         SetVelocityZero();
     }
 }
     public void MoveLeft()
     {
     rb.velocity = new Vector2(-carSpeed, 0);
     }
     public void MoveRight()
     {
     rb.velocity = new Vector2(carSpeed, 0);
     }
     public void SetVelocityZero()
     {
         rb.velocity = Vector2.zero;
    
 }

}

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

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

touch control doesn't work right after suspending and resuming game 0 Answers

KeyboardOrbit with DualTouchControls 1 Answer

Unity2D touch screen input 0 Answers

Mobile Input - Sensitivity, Gravity Matching InputManager's Key 0 Answers

Input.GetTouch never getting TouchPhase.Ended on Android 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