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 Ludius · Apr 04, 2014 at 01:38 AM · 2dcontrolstopdownvehicle

Rotating a Top-Down vehicle To Face a Direction

I'm attempting to write a script to control cars in a top-down 2D game, and I've been having trouble with it not behaving how I want. Essentially the way I want it to control is the player uses the thumbstick to specify or "point out" the direction they want the car to face, and the script rotates the car towards that based on a maximum turn per frame radius. However, in the game the cars always take the longest possible way to get to the destination the player sets but only in a certain range (When the ThumStickAngle_ wraps around, from about 6 to 0.5 I think). How can I solve this?

 void Update () {
     LastPadState_ = PadState_;
     PadState_ = GamePad.GetState(ControllerIndex_);

     if(PadState_.ThumbSticks.Left.X != 0 || PadState_.ThumbSticks.Left.Y != 0)
     {
         Vector2 LThumbstickNormal_ = new Vector2(PadState_.ThumbSticks.Left.X, PadState_.ThumbSticks.Left.Y);
         LThumbstickNormal_.Normalize();

         float ThumbStickAngle_ = Mathf.Atan2(LThumbstickNormal_.y, LThumbstickNormal_.x) + Mathf.PI;
         float CarAngle_ = (transform.eulerAngles.z * Mathf.Deg2Rad % 360) ;

         float TurnFactor_ = ((Mathf.Abs(ThumbStickAngle_ - CarAngle_) <(2*Mathf.PI) -  Mathf.Abs(ThumbStickAngle_-CarAngle_)))? ThumbStickAngle_ - CarAngle_: 2*Mathf.PI -ThumbStickAngle_-CarAngle_; //Make sure car turns the least amount possible
         TurnFactor_ = Mathf.Clamp(TurnFactor_,-MaxTurnAngle, MaxTurnAngle);
         Debug.Log("TurnFactor_: " + TurnFactor_ + ", ThumbStickAngle_: " + ThumbStickAngle_ + ", CarAngle: " + CarAngle_);
         transform.Rotate(transform.forward * TurnFactor_ * rigidbody2D.velocity.magnitude * TurnStrength);
     }
     transform.rigidbody2D.AddForce(-transform.right * Speed * PadState_.Triggers.Right);
 }

Sorry about the sloppy code, if you need anything clarified please tell me. The problem probably lies around the line were I set the TurnFactor_. Also I'm using XInput for input.

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

20 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

Related Questions

Problem entering vehicle on top down 2d game 2 Answers

Speed Change Doesn't Apply,Why does changing the speed makes the controls wrong 0 Answers

Control individual wheels of a top down 2d vehicle 0 Answers

Top down 2d movement without being affected by rotation 2 Answers

Assets/Scripts/PlayerController.cs(32,49): error CS0126: An object of a type convertible to `float' is required for the return statement 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