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 Meuleuh · Jul 05, 2018 at 01:54 AM · scripting problemrigidbody2dvelocitydebug

Not able to find the problem in my movement code using velocity

I was working on a movement script for my character, everything was going fine, my character was moving until I tried to limit his top speed using a comparaison. I first tought the comparison was never getting a "true" state, but I tried to replace the "if" condition by true and it still doesn't work.

As rexeplenation, the goal is to make the character move by increasing his velocity but still setting him a limit, all of that controlled by the "a" and "d" keys on the keyboard.

Here's my actual code:

 using System.Collections;
 using UnityEngine;
 
 public class GaucheDroite : MonoBehaviour {
 
     private Animator animator;
     private SpriteRenderer spriteParameters;
     enum Direction {right, left, idle};
 
     [SerializeField]
     public float velocityMax;
 
     // Use this for initialization
     void Start () {
         spriteParameters = gameObject.GetComponent<SpriteRenderer>();
         animator = gameObject.GetComponent<Animator>();
     }
     
     // Update is called once per frame
     void Update () {
 
         if (Input.GetKey("d") == true)
         {
             animator.SetBool("Walking", true);
             spriteParameters.flipX = false;
             WalkingAction(Direction.right);
         }
         else if (Input.GetKey("a") == true)
         {
             animator.SetBool("Walking", true);
             spriteParameters.flipX = true;
             WalkingAction(Direction.left);
         }
         else
         {
             animator.SetBool("Walking", false);
             WalkingAction(Direction.idle);
         }
 
     }
 
     void WalkingAction (Direction directionDeLaMarche)
     {
         Rigidbody2D rigidbody2D = gameObject.GetComponent<Rigidbody2D>();
         float velocityY = gameObject.GetComponent<Rigidbody2D>().velocity.y;
         float velocityX = gameObject.GetComponent<Rigidbody2D>().velocity.x;
 
         switch (directionDeLaMarche)
         {
             case Direction.right:
                 if (velocityX < velocityMax)
                 {
                     rigidbody2D.velocity.Set(velocityX+1,velocityY);
                 }
                 break;
             case Direction.left:
                 if (velocityX > -velocityMax)
                 {
                     rigidbody2D.velocity.Set(velocityX-1,velocityY);
                 }
                 break;
             case Direction.idle:
                 break;
         }
     }
 }

As extra information:

  • VelocityMax is set to 10

  • Animation work fine

  • The keys are detected as wished (which makes the character sprites flip his direction and trigger the walking animation)

  • "idle" does nothing except setting the animation of the character to the idle pose

  • I can share an actual version of my in-dev game if needed

Thanks for your help in advance!

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 LEDWORKS · Jul 05, 2018 at 01:52 PM 0
Share

I see no speed comparison/limit here?

2 Replies

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

Answer by Meuleuh · Jul 05, 2018 at 04:13 PM

I've finally found out! Instead of using rigidbody2D.velocity.Set(velocityX+1,velocityY);, I'm now using rigidbody2D.velocity = new Vector2(velocityX + 1, velocityY); which do works instead! Thanks for trying to help me, but it seems that I figured out by myself!

Comment
Add comment · Show 2 · 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
avatar image madks13 · Jul 06, 2018 at 09:07 AM 0
Share

If you click on the link in my comment, the example says exactly that.

avatar image Meuleuh madks13 · Jul 07, 2018 at 07:40 PM 0
Share

Thanks anyway!

avatar image
-1

Answer by madks13 · Jul 05, 2018 at 01:31 PM

Umm, how long did you keep the key pressed? Also, did you check the rigidbody settings so the body isn't stuck on the floor? Otherwise, try looking at this example on how to set the velocity.

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

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

Variable isn't assigned, even though I have assigned it in the Start() method 2 Answers

Rigidbody2D giving incorrect value 1 Answer

Stoping Velocity Breaks Script [Solved] 0 Answers

How can I get local 2d Velocity? 2 Answers

Rigidbody2D velocity relative to screen size 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