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 /
avatar image
0
Question by BlazingOculus · Dec 27, 2017 at 10:31 AM · movementtransformdirection

character movement at +/- 90° not working as expected

Hi,

I have a problem with transform.transformDirection with regards to character movement and movement speed.

I use the following code snippet to calculate velocitychange and then I alter the characters velocity with AddForce.

 Vector3 relativeVelocity = transform.TransformDirection (InputVector);
    if (InputVector.z > 0) {
        if (InputVector.x != 0) {
            relativeVelocity.z *= (Input.GetButton ("Sprint")) ? RunForwardStrafeSpeed :WalkForwardStrafeSpeed;
            relativeVelocity.x *= (Input.GetButton ("Sprint")) ? RunForwardStrafeSpeed :WalkForwardStrafeSpeed;
        } else {
            relativeVelocity.z *= (Input.GetButton ("Sprint")) ? RunForwardSpeed :WalkForwardSpeed;
        }
    } else if (InputVector.z < 0) {
        if (InputVector.x != 0) {
            relativeVelocity.z *= (Input.GetButton ("Sprint")) ? RunBackStrafeSpeed : WalkBackStrafeSpeed;
            relativeVelocity.x *= (Input.GetButton ("Sprint")) ? RunBackStrafeSpeed : WalkBackStrafeSpeed;
        } else {
relativeVelocity.z *= (Input.GetButton ("Sprint")) ? RunBackSpeed : WalkBackSpeed;
        }
    } else {
        relativeVelocity.x *= (Input.GetButton ("Sprint")) ? RunStrafeSpeed : WalkStrafeSpeed;
    }
    //print (relativeVelocity);
    Vector3 currentVelocity = rb.velocity - groundVelocity;
    Vector3 velocityChange = relativeVelocity - currentVelocity;
    //print ("cr"+velocityChange+"=rv"+relativeVelocity+"-rb"+rb.velocity+"-"+groundVelocity);
    velocityChange.x = Mathf.Clamp (velocityChange.x, -MaxVelocityChange, +MaxVelocityChange);
    velocityChange.y = 0;
    velocityChange.z = Mathf.Clamp (velocityChange.z, -MaxVelocityChange, +MaxVelocityChange);
    return velocityChange;

The code seems flawless, but pure W, A, S or D movements at +/-90° makes the character crawl at a speed of 0.1f instead of 8f. Diagonal movement at +/-90° works perfectly, and all movement works perfectly at +/- 180°.
If rotating the character to +/- 45° or +/-135° and moving with pure W, A, S or D, then the speed towards +/- 180° is faster than the speed towards +/-90°.

Any help or suggestions would be appreciated.

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

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by BlazingOculus · Dec 27, 2017 at 11:00 AM

OK, the code was not as flawless as I thought.

I didn't notice that the relativeVelocity's x and z axis gradually swap when rotating the character.

I altered the following snippet, of the above code, to: ()

 if (InputVector.z > 0) {
        if (InputVector.x != 0) {
            relativeVelocity.z *= (Input.GetButton ("Sprint")) ? RunForwardStrafeSpeed : WalkForwardStrafeSpeed;
            relativeVelocity.x *= (Input.GetButton ("Sprint")) ? RunForwardStrafeSpeed : WalkForwardStrafeSpeed;
        } else {
            relativeVelocity.z *= (Input.GetButton ("Sprint")) ? RunForwardSpeed : WalkForwardSpeed;
            (edit)relativeVelocity.x *= (Input.GetButton ("Sprint")) ? RunForwardSpeed : WalkForwardSpeed;(edit)
            print (relativeVelocity);
        }
    } else if (InputVector.z < 0) {
        if (InputVector.x != 0) {
            relativeVelocity.z *= (Input.GetButton ("Sprint")) ? RunBackStrafeSpeed : WalkBackStrafeSpeed;
            relativeVelocity.x *= (Input.GetButton ("Sprint")) ? RunBackStrafeSpeed : WalkBackStrafeSpeed;
        } else {
            relativeVelocity.z *= (Input.GetButton ("Sprint")) ? RunBackSpeed : WalkBackSpeed;
            (edit)relativeVelocity.x *= (Input.GetButton ("Sprint")) ? RunBackSpeed : WalkBackSpeed;(edit)
        }
    } else {
        relativeVelocity.x *= (Input.GetButton ("Sprint")) ? RunStrafeSpeed : WalkStrafeSpeed;
        (edit)relativeVelocity.y *= (Input.GetButton ("Sprint")) ? RunStrafeSpeed : WalkStrafeSpeed;(edit)
    }

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

121 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

Related Questions

Transform position of an object at particular angle/direction 3 Answers

tranform.TransformDirection not effecting spawned object 2 Answers

How to drag and drop a instantiate prefab on my mobile game 3D using touchs! 0 Answers

Movement Script Help 1 Answer

How do I get GameObjects to look at me? 2 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