How to move the player while also allowing forces to affect itCorrectly Implementing a “Double Jump”How do I move a 2D top-down racing camera smoothly and show what's ahead of the player?Move a player in the opposite direction they are lookingCan not seem to adjust the speed of my CarHow can I handle multiple force in Unity?Constant orbit using Rigidbody in UnityHow am I supposed to timestep this gravitational simulatorImplementing acceleration in topdown 2d gameMove Camera After Player Moves Certain DistanceControlling a thrustered 2D space ship with angular rotation and max speed

Does the average primeness of natural numbers tend to zero?

Can I legally use front facing blue light in the UK?

Are white and non-white police officers equally likely to kill black suspects?

Is a vector space a subspace of itself?

I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine

What is it called when one voice type sings a 'solo'?

"listening to me about as much as you're listening to this pole here"

Does it makes sense to buy a new cycle to learn riding?

Shall I use personal or official e-mail account when registering to external websites for work purpose?

Lied on resume at previous job

Email Account under attack (really) - anything I can do?

What is GPS' 19 year rollover and does it present a cybersecurity issue?

How to make payment on the internet without leaving a money trail?

Patience, young "Padovan"

Was there ever an axiom rendered a theorem?

How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)

What happens when a metallic dragon and a chromatic dragon mate?

Where to refill my bottle in India?

Is this relativistic mass?

Need help identifying/translating a plaque in Tangier, Morocco

Is ipsum/ipsa/ipse a third person pronoun, or can it serve other functions?

What do the Banks children have against barley water?

How to answer pointed "are you quitting" questioning when I don't want them to suspect

Can the Produce Flame cantrip be used to grapple, or as an unarmed strike, in the right circumstances?



How to move the player while also allowing forces to affect it


Correctly Implementing a “Double Jump”How do I move a 2D top-down racing camera smoothly and show what's ahead of the player?Move a player in the opposite direction they are lookingCan not seem to adjust the speed of my CarHow can I handle multiple force in Unity?Constant orbit using Rigidbody in UnityHow am I supposed to timestep this gravitational simulatorImplementing acceleration in topdown 2d gameMove Camera After Player Moves Certain DistanceControlling a thrustered 2D space ship with angular rotation and max speed






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








5












$begingroup$


For now, that's how I move the player:



rb.velocity = Vector2.right * input.x;


And I affect him a force while he is damaged by an entity:



rb.AddForce(Vector2.right * force);


It works fine, until I try to move while I'm damaged by an entity.
Since my velocity = input.x while I move, I can't affect any forces to it.
I've tried to summarize velocity:



rb.velocity+=Vector2.right * input.x;


But then I need to clamp the speed and if I clamp it, my force which is affected to player is also clamped.



How can I resolve this problem?










share|improve this question











$endgroup$


















    5












    $begingroup$


    For now, that's how I move the player:



    rb.velocity = Vector2.right * input.x;


    And I affect him a force while he is damaged by an entity:



    rb.AddForce(Vector2.right * force);


    It works fine, until I try to move while I'm damaged by an entity.
    Since my velocity = input.x while I move, I can't affect any forces to it.
    I've tried to summarize velocity:



    rb.velocity+=Vector2.right * input.x;


    But then I need to clamp the speed and if I clamp it, my force which is affected to player is also clamped.



    How can I resolve this problem?










    share|improve this question











    $endgroup$














      5












      5








      5


      3



      $begingroup$


      For now, that's how I move the player:



      rb.velocity = Vector2.right * input.x;


      And I affect him a force while he is damaged by an entity:



      rb.AddForce(Vector2.right * force);


      It works fine, until I try to move while I'm damaged by an entity.
      Since my velocity = input.x while I move, I can't affect any forces to it.
      I've tried to summarize velocity:



      rb.velocity+=Vector2.right * input.x;


      But then I need to clamp the speed and if I clamp it, my force which is affected to player is also clamped.



      How can I resolve this problem?










      share|improve this question











      $endgroup$




      For now, that's how I move the player:



      rb.velocity = Vector2.right * input.x;


      And I affect him a force while he is damaged by an entity:



      rb.AddForce(Vector2.right * force);


      It works fine, until I try to move while I'm damaged by an entity.
      Since my velocity = input.x while I move, I can't affect any forces to it.
      I've tried to summarize velocity:



      rb.velocity+=Vector2.right * input.x;


      But then I need to clamp the speed and if I clamp it, my force which is affected to player is also clamped.



      How can I resolve this problem?







      unity 2d physics rigidbody






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 15 hours ago









      Alex Myers

      343110




      343110










      asked 15 hours ago









      Basea BasiliaBasea Basilia

      426




      426




















          3 Answers
          3






          active

          oldest

          votes


















          3












          $begingroup$

          You're on the right track! This is something that usually the controller is responsible for. When you jump in a platformer you use a "isGrounded" variable to change how the controls behave while in the air right? You need a similar state for isKnockback. In most games when a player is knocked back, they have control striped from them for a certain amount of time. That or you treat it like being airborn where instead of setting velocity it will just apply a force to adjust the velocity. How you want to implement that control is a design choice, but there is no real physics based answer. The true physics based answer is implementing locomotion in the character's legs and that's not really useful for game physics. Another solution could be instead of applying a force, is to work with knockback at a velocity level like your movement. Apply a velocity, and reduce it by some amount each fixed update to simulate a knockback like effect. This is another common solution in the industry.



          Edit: Just to credit the other answers here, they mention making your movement acceleration / force based. This is also an option, depending on the kind of motion you want. This approach is far more intuitive but gives you a lesser degree of control. It all depends on what you want, and it's important you make that decision early (or experiment if you're not sure) because it will impact decisions further down the line. If you want to see how crazy some platforming code can get, Matt released the code for Madeline from Celeste. They use a different engine (framework actually) but you can get the jist of how many variables and pseudo physics were used to achieve that feel. https://github.com/NoelFB/Celeste/blob/master/Source/Player/Player.cs






          share|improve this answer











          $endgroup$












          • $begingroup$
            Thank you, it's done by check true isKnockback when force is applied and check false when player will collide with ground next time, it works very fine
            $endgroup$
            – Basea Basilia
            15 hours ago










          • $begingroup$
            Glad to hear it. In general don't be afraid to fake physics in your games. Lots of engines have these awesome realistic physics, but in many game scenarios people just end up faking most of it :)
            $endgroup$
            – gjh33
            14 hours ago


















          8












          $begingroup$

          I created a little demo game a few days ago which demonstrates different ways to move a player-character. It might help you to better understand which way of moving is the right one for your particular game.



          In general, you should use rigidbody.AddForce whenever feasible. It automatically takes care of managing multiple overlapping forces and ensures that the transfer of momentum on collisions is physically correct.



          If you don't want your character to be able to accelerate indefinitely, increase the "Linear Drag" value of the rigidbody. The drag force increases quadratically with the velocity, so at some point it will cancel out the acceleration and effectively limit the maximum speed. A larger drag value will result in shorter acceleration and deceleration times, making the controls feel more "tight", but also greatly limit the effect of collisions.



          If you want the character to have tight controls but also be affected by collisions, you could handle this the way the answer by gjh33 suggests. Have two different states in your player-controller. A regular state where the rigidbody has high drag and the player has full control force, and a "just got hit" state where you reduce the drag and the control force temporarily in order to make the character fly around in a temporary state of uncontrolled helplessness.



          I am looking forward to playing your game.






          share|improve this answer











          $endgroup$




















            4












            $begingroup$

            Myself, I like to solve this by thinking of all player movement as acceleration-based.



            I choose a target velocity using whatever complicated control logic I like, then ask the player avatar to accelerate toward that target, while respecting maximum acceleration rates I set.



            Then, depending on the avatar's state (on ground, on ice, in the air, in a knockback state), I can change those acceleration rates to make the control input have a sharper or less pronounced impact.



            Rigidbody2D body;

            void AccelerateTowards(Vector2 targetVelocity, float maxAccel, float maxDecel)
            // Compute desired velocity change.
            var velocity = body.velocity;
            var deltaV = targetVelocity - velocity;

            // Convert our velocity change to a desired acceleration,
            // aiming to complete the change in a single time step.

            // (For best consistency, call this in FixedUpdate,
            // and deltaTime will automatically give fixedDeltaTime)
            var accel = deltaV / Time.deltaTime;

            // Choose an acceleration limit depending on whether we're
            // accelerating further in a similar direction, or braking.
            var limit = Dot(deltaV, velocity) > 0f ? maxAccel : maxDecel;

            // Enforce our acceleration limit, so we never exceed it.
            var force = body.mass * Vector2.ClampMagnitude(accel, limit);

            // Apply the computed force to our body.
            body.AddForce(force, ForceMode2D.Force);



            Separating acceleration & deceleration rates like this lets me give a sharper braking force, which tends to help the controls feel tight & responsive when stopping or changing directions, while keeping a smooth acceleration for getting up to speed. It also lets you penalize braking specifically when on ice or being knocked back.



            We can make a control state parameters object to hold the max speed, acceleration, and deceleration rates for our air, ground, ice, knockback states etc. and use this to adjust our control handling very flexibly:



            // Choose our current speed / acceleration parameters based on our state.
            var controlState = GetCurrentControlState();

            // Compute desired velocity.
            var velocity = GetDesiredVelocityFromInput(controlState.maxSpeed);

            // Try our best to reach that velocity, with our current parameters.
            AccelerateTowards(
            velocity,
            controlState.maxAccel,
            controlState.maxDecel
            );





            share|improve this answer











            $endgroup$












            • $begingroup$
              does deltatime automatically give fixedDeltaTime in fixedUpdate loop? That's really cool! I know I used to have to code around that, do you know when they added that?
              $endgroup$
              – gjh33
              12 hours ago










            • $begingroup$
              I looked into it you're right. That's very useful. I don't remember that being a thing when I started working in unity, definitely makes reusing functions in different update loops way easier.
              $endgroup$
              – gjh33
              12 hours ago











            Your Answer





            StackExchange.ifUsing("editor", function ()
            return StackExchange.using("mathjaxEditing", function ()
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
            );
            );
            , "mathjax-editing");

            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "53"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgamedev.stackexchange.com%2fquestions%2f169839%2fhow-to-move-the-player-while-also-allowing-forces-to-affect-it%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            3












            $begingroup$

            You're on the right track! This is something that usually the controller is responsible for. When you jump in a platformer you use a "isGrounded" variable to change how the controls behave while in the air right? You need a similar state for isKnockback. In most games when a player is knocked back, they have control striped from them for a certain amount of time. That or you treat it like being airborn where instead of setting velocity it will just apply a force to adjust the velocity. How you want to implement that control is a design choice, but there is no real physics based answer. The true physics based answer is implementing locomotion in the character's legs and that's not really useful for game physics. Another solution could be instead of applying a force, is to work with knockback at a velocity level like your movement. Apply a velocity, and reduce it by some amount each fixed update to simulate a knockback like effect. This is another common solution in the industry.



            Edit: Just to credit the other answers here, they mention making your movement acceleration / force based. This is also an option, depending on the kind of motion you want. This approach is far more intuitive but gives you a lesser degree of control. It all depends on what you want, and it's important you make that decision early (or experiment if you're not sure) because it will impact decisions further down the line. If you want to see how crazy some platforming code can get, Matt released the code for Madeline from Celeste. They use a different engine (framework actually) but you can get the jist of how many variables and pseudo physics were used to achieve that feel. https://github.com/NoelFB/Celeste/blob/master/Source/Player/Player.cs






            share|improve this answer











            $endgroup$












            • $begingroup$
              Thank you, it's done by check true isKnockback when force is applied and check false when player will collide with ground next time, it works very fine
              $endgroup$
              – Basea Basilia
              15 hours ago










            • $begingroup$
              Glad to hear it. In general don't be afraid to fake physics in your games. Lots of engines have these awesome realistic physics, but in many game scenarios people just end up faking most of it :)
              $endgroup$
              – gjh33
              14 hours ago















            3












            $begingroup$

            You're on the right track! This is something that usually the controller is responsible for. When you jump in a platformer you use a "isGrounded" variable to change how the controls behave while in the air right? You need a similar state for isKnockback. In most games when a player is knocked back, they have control striped from them for a certain amount of time. That or you treat it like being airborn where instead of setting velocity it will just apply a force to adjust the velocity. How you want to implement that control is a design choice, but there is no real physics based answer. The true physics based answer is implementing locomotion in the character's legs and that's not really useful for game physics. Another solution could be instead of applying a force, is to work with knockback at a velocity level like your movement. Apply a velocity, and reduce it by some amount each fixed update to simulate a knockback like effect. This is another common solution in the industry.



            Edit: Just to credit the other answers here, they mention making your movement acceleration / force based. This is also an option, depending on the kind of motion you want. This approach is far more intuitive but gives you a lesser degree of control. It all depends on what you want, and it's important you make that decision early (or experiment if you're not sure) because it will impact decisions further down the line. If you want to see how crazy some platforming code can get, Matt released the code for Madeline from Celeste. They use a different engine (framework actually) but you can get the jist of how many variables and pseudo physics were used to achieve that feel. https://github.com/NoelFB/Celeste/blob/master/Source/Player/Player.cs






            share|improve this answer











            $endgroup$












            • $begingroup$
              Thank you, it's done by check true isKnockback when force is applied and check false when player will collide with ground next time, it works very fine
              $endgroup$
              – Basea Basilia
              15 hours ago










            • $begingroup$
              Glad to hear it. In general don't be afraid to fake physics in your games. Lots of engines have these awesome realistic physics, but in many game scenarios people just end up faking most of it :)
              $endgroup$
              – gjh33
              14 hours ago













            3












            3








            3





            $begingroup$

            You're on the right track! This is something that usually the controller is responsible for. When you jump in a platformer you use a "isGrounded" variable to change how the controls behave while in the air right? You need a similar state for isKnockback. In most games when a player is knocked back, they have control striped from them for a certain amount of time. That or you treat it like being airborn where instead of setting velocity it will just apply a force to adjust the velocity. How you want to implement that control is a design choice, but there is no real physics based answer. The true physics based answer is implementing locomotion in the character's legs and that's not really useful for game physics. Another solution could be instead of applying a force, is to work with knockback at a velocity level like your movement. Apply a velocity, and reduce it by some amount each fixed update to simulate a knockback like effect. This is another common solution in the industry.



            Edit: Just to credit the other answers here, they mention making your movement acceleration / force based. This is also an option, depending on the kind of motion you want. This approach is far more intuitive but gives you a lesser degree of control. It all depends on what you want, and it's important you make that decision early (or experiment if you're not sure) because it will impact decisions further down the line. If you want to see how crazy some platforming code can get, Matt released the code for Madeline from Celeste. They use a different engine (framework actually) but you can get the jist of how many variables and pseudo physics were used to achieve that feel. https://github.com/NoelFB/Celeste/blob/master/Source/Player/Player.cs






            share|improve this answer











            $endgroup$



            You're on the right track! This is something that usually the controller is responsible for. When you jump in a platformer you use a "isGrounded" variable to change how the controls behave while in the air right? You need a similar state for isKnockback. In most games when a player is knocked back, they have control striped from them for a certain amount of time. That or you treat it like being airborn where instead of setting velocity it will just apply a force to adjust the velocity. How you want to implement that control is a design choice, but there is no real physics based answer. The true physics based answer is implementing locomotion in the character's legs and that's not really useful for game physics. Another solution could be instead of applying a force, is to work with knockback at a velocity level like your movement. Apply a velocity, and reduce it by some amount each fixed update to simulate a knockback like effect. This is another common solution in the industry.



            Edit: Just to credit the other answers here, they mention making your movement acceleration / force based. This is also an option, depending on the kind of motion you want. This approach is far more intuitive but gives you a lesser degree of control. It all depends on what you want, and it's important you make that decision early (or experiment if you're not sure) because it will impact decisions further down the line. If you want to see how crazy some platforming code can get, Matt released the code for Madeline from Celeste. They use a different engine (framework actually) but you can get the jist of how many variables and pseudo physics were used to achieve that feel. https://github.com/NoelFB/Celeste/blob/master/Source/Player/Player.cs







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 12 hours ago

























            answered 15 hours ago









            gjh33gjh33

            2364




            2364











            • $begingroup$
              Thank you, it's done by check true isKnockback when force is applied and check false when player will collide with ground next time, it works very fine
              $endgroup$
              – Basea Basilia
              15 hours ago










            • $begingroup$
              Glad to hear it. In general don't be afraid to fake physics in your games. Lots of engines have these awesome realistic physics, but in many game scenarios people just end up faking most of it :)
              $endgroup$
              – gjh33
              14 hours ago
















            • $begingroup$
              Thank you, it's done by check true isKnockback when force is applied and check false when player will collide with ground next time, it works very fine
              $endgroup$
              – Basea Basilia
              15 hours ago










            • $begingroup$
              Glad to hear it. In general don't be afraid to fake physics in your games. Lots of engines have these awesome realistic physics, but in many game scenarios people just end up faking most of it :)
              $endgroup$
              – gjh33
              14 hours ago















            $begingroup$
            Thank you, it's done by check true isKnockback when force is applied and check false when player will collide with ground next time, it works very fine
            $endgroup$
            – Basea Basilia
            15 hours ago




            $begingroup$
            Thank you, it's done by check true isKnockback when force is applied and check false when player will collide with ground next time, it works very fine
            $endgroup$
            – Basea Basilia
            15 hours ago












            $begingroup$
            Glad to hear it. In general don't be afraid to fake physics in your games. Lots of engines have these awesome realistic physics, but in many game scenarios people just end up faking most of it :)
            $endgroup$
            – gjh33
            14 hours ago




            $begingroup$
            Glad to hear it. In general don't be afraid to fake physics in your games. Lots of engines have these awesome realistic physics, but in many game scenarios people just end up faking most of it :)
            $endgroup$
            – gjh33
            14 hours ago













            8












            $begingroup$

            I created a little demo game a few days ago which demonstrates different ways to move a player-character. It might help you to better understand which way of moving is the right one for your particular game.



            In general, you should use rigidbody.AddForce whenever feasible. It automatically takes care of managing multiple overlapping forces and ensures that the transfer of momentum on collisions is physically correct.



            If you don't want your character to be able to accelerate indefinitely, increase the "Linear Drag" value of the rigidbody. The drag force increases quadratically with the velocity, so at some point it will cancel out the acceleration and effectively limit the maximum speed. A larger drag value will result in shorter acceleration and deceleration times, making the controls feel more "tight", but also greatly limit the effect of collisions.



            If you want the character to have tight controls but also be affected by collisions, you could handle this the way the answer by gjh33 suggests. Have two different states in your player-controller. A regular state where the rigidbody has high drag and the player has full control force, and a "just got hit" state where you reduce the drag and the control force temporarily in order to make the character fly around in a temporary state of uncontrolled helplessness.



            I am looking forward to playing your game.






            share|improve this answer











            $endgroup$

















              8












              $begingroup$

              I created a little demo game a few days ago which demonstrates different ways to move a player-character. It might help you to better understand which way of moving is the right one for your particular game.



              In general, you should use rigidbody.AddForce whenever feasible. It automatically takes care of managing multiple overlapping forces and ensures that the transfer of momentum on collisions is physically correct.



              If you don't want your character to be able to accelerate indefinitely, increase the "Linear Drag" value of the rigidbody. The drag force increases quadratically with the velocity, so at some point it will cancel out the acceleration and effectively limit the maximum speed. A larger drag value will result in shorter acceleration and deceleration times, making the controls feel more "tight", but also greatly limit the effect of collisions.



              If you want the character to have tight controls but also be affected by collisions, you could handle this the way the answer by gjh33 suggests. Have two different states in your player-controller. A regular state where the rigidbody has high drag and the player has full control force, and a "just got hit" state where you reduce the drag and the control force temporarily in order to make the character fly around in a temporary state of uncontrolled helplessness.



              I am looking forward to playing your game.






              share|improve this answer











              $endgroup$















                8












                8








                8





                $begingroup$

                I created a little demo game a few days ago which demonstrates different ways to move a player-character. It might help you to better understand which way of moving is the right one for your particular game.



                In general, you should use rigidbody.AddForce whenever feasible. It automatically takes care of managing multiple overlapping forces and ensures that the transfer of momentum on collisions is physically correct.



                If you don't want your character to be able to accelerate indefinitely, increase the "Linear Drag" value of the rigidbody. The drag force increases quadratically with the velocity, so at some point it will cancel out the acceleration and effectively limit the maximum speed. A larger drag value will result in shorter acceleration and deceleration times, making the controls feel more "tight", but also greatly limit the effect of collisions.



                If you want the character to have tight controls but also be affected by collisions, you could handle this the way the answer by gjh33 suggests. Have two different states in your player-controller. A regular state where the rigidbody has high drag and the player has full control force, and a "just got hit" state where you reduce the drag and the control force temporarily in order to make the character fly around in a temporary state of uncontrolled helplessness.



                I am looking forward to playing your game.






                share|improve this answer











                $endgroup$



                I created a little demo game a few days ago which demonstrates different ways to move a player-character. It might help you to better understand which way of moving is the right one for your particular game.



                In general, you should use rigidbody.AddForce whenever feasible. It automatically takes care of managing multiple overlapping forces and ensures that the transfer of momentum on collisions is physically correct.



                If you don't want your character to be able to accelerate indefinitely, increase the "Linear Drag" value of the rigidbody. The drag force increases quadratically with the velocity, so at some point it will cancel out the acceleration and effectively limit the maximum speed. A larger drag value will result in shorter acceleration and deceleration times, making the controls feel more "tight", but also greatly limit the effect of collisions.



                If you want the character to have tight controls but also be affected by collisions, you could handle this the way the answer by gjh33 suggests. Have two different states in your player-controller. A regular state where the rigidbody has high drag and the player has full control force, and a "just got hit" state where you reduce the drag and the control force temporarily in order to make the character fly around in a temporary state of uncontrolled helplessness.



                I am looking forward to playing your game.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited 14 hours ago

























                answered 14 hours ago









                PhilippPhilipp

                81.9k20193243




                81.9k20193243





















                    4












                    $begingroup$

                    Myself, I like to solve this by thinking of all player movement as acceleration-based.



                    I choose a target velocity using whatever complicated control logic I like, then ask the player avatar to accelerate toward that target, while respecting maximum acceleration rates I set.



                    Then, depending on the avatar's state (on ground, on ice, in the air, in a knockback state), I can change those acceleration rates to make the control input have a sharper or less pronounced impact.



                    Rigidbody2D body;

                    void AccelerateTowards(Vector2 targetVelocity, float maxAccel, float maxDecel)
                    // Compute desired velocity change.
                    var velocity = body.velocity;
                    var deltaV = targetVelocity - velocity;

                    // Convert our velocity change to a desired acceleration,
                    // aiming to complete the change in a single time step.

                    // (For best consistency, call this in FixedUpdate,
                    // and deltaTime will automatically give fixedDeltaTime)
                    var accel = deltaV / Time.deltaTime;

                    // Choose an acceleration limit depending on whether we're
                    // accelerating further in a similar direction, or braking.
                    var limit = Dot(deltaV, velocity) > 0f ? maxAccel : maxDecel;

                    // Enforce our acceleration limit, so we never exceed it.
                    var force = body.mass * Vector2.ClampMagnitude(accel, limit);

                    // Apply the computed force to our body.
                    body.AddForce(force, ForceMode2D.Force);



                    Separating acceleration & deceleration rates like this lets me give a sharper braking force, which tends to help the controls feel tight & responsive when stopping or changing directions, while keeping a smooth acceleration for getting up to speed. It also lets you penalize braking specifically when on ice or being knocked back.



                    We can make a control state parameters object to hold the max speed, acceleration, and deceleration rates for our air, ground, ice, knockback states etc. and use this to adjust our control handling very flexibly:



                    // Choose our current speed / acceleration parameters based on our state.
                    var controlState = GetCurrentControlState();

                    // Compute desired velocity.
                    var velocity = GetDesiredVelocityFromInput(controlState.maxSpeed);

                    // Try our best to reach that velocity, with our current parameters.
                    AccelerateTowards(
                    velocity,
                    controlState.maxAccel,
                    controlState.maxDecel
                    );





                    share|improve this answer











                    $endgroup$












                    • $begingroup$
                      does deltatime automatically give fixedDeltaTime in fixedUpdate loop? That's really cool! I know I used to have to code around that, do you know when they added that?
                      $endgroup$
                      – gjh33
                      12 hours ago










                    • $begingroup$
                      I looked into it you're right. That's very useful. I don't remember that being a thing when I started working in unity, definitely makes reusing functions in different update loops way easier.
                      $endgroup$
                      – gjh33
                      12 hours ago















                    4












                    $begingroup$

                    Myself, I like to solve this by thinking of all player movement as acceleration-based.



                    I choose a target velocity using whatever complicated control logic I like, then ask the player avatar to accelerate toward that target, while respecting maximum acceleration rates I set.



                    Then, depending on the avatar's state (on ground, on ice, in the air, in a knockback state), I can change those acceleration rates to make the control input have a sharper or less pronounced impact.



                    Rigidbody2D body;

                    void AccelerateTowards(Vector2 targetVelocity, float maxAccel, float maxDecel)
                    // Compute desired velocity change.
                    var velocity = body.velocity;
                    var deltaV = targetVelocity - velocity;

                    // Convert our velocity change to a desired acceleration,
                    // aiming to complete the change in a single time step.

                    // (For best consistency, call this in FixedUpdate,
                    // and deltaTime will automatically give fixedDeltaTime)
                    var accel = deltaV / Time.deltaTime;

                    // Choose an acceleration limit depending on whether we're
                    // accelerating further in a similar direction, or braking.
                    var limit = Dot(deltaV, velocity) > 0f ? maxAccel : maxDecel;

                    // Enforce our acceleration limit, so we never exceed it.
                    var force = body.mass * Vector2.ClampMagnitude(accel, limit);

                    // Apply the computed force to our body.
                    body.AddForce(force, ForceMode2D.Force);



                    Separating acceleration & deceleration rates like this lets me give a sharper braking force, which tends to help the controls feel tight & responsive when stopping or changing directions, while keeping a smooth acceleration for getting up to speed. It also lets you penalize braking specifically when on ice or being knocked back.



                    We can make a control state parameters object to hold the max speed, acceleration, and deceleration rates for our air, ground, ice, knockback states etc. and use this to adjust our control handling very flexibly:



                    // Choose our current speed / acceleration parameters based on our state.
                    var controlState = GetCurrentControlState();

                    // Compute desired velocity.
                    var velocity = GetDesiredVelocityFromInput(controlState.maxSpeed);

                    // Try our best to reach that velocity, with our current parameters.
                    AccelerateTowards(
                    velocity,
                    controlState.maxAccel,
                    controlState.maxDecel
                    );





                    share|improve this answer











                    $endgroup$












                    • $begingroup$
                      does deltatime automatically give fixedDeltaTime in fixedUpdate loop? That's really cool! I know I used to have to code around that, do you know when they added that?
                      $endgroup$
                      – gjh33
                      12 hours ago










                    • $begingroup$
                      I looked into it you're right. That's very useful. I don't remember that being a thing when I started working in unity, definitely makes reusing functions in different update loops way easier.
                      $endgroup$
                      – gjh33
                      12 hours ago













                    4












                    4








                    4





                    $begingroup$

                    Myself, I like to solve this by thinking of all player movement as acceleration-based.



                    I choose a target velocity using whatever complicated control logic I like, then ask the player avatar to accelerate toward that target, while respecting maximum acceleration rates I set.



                    Then, depending on the avatar's state (on ground, on ice, in the air, in a knockback state), I can change those acceleration rates to make the control input have a sharper or less pronounced impact.



                    Rigidbody2D body;

                    void AccelerateTowards(Vector2 targetVelocity, float maxAccel, float maxDecel)
                    // Compute desired velocity change.
                    var velocity = body.velocity;
                    var deltaV = targetVelocity - velocity;

                    // Convert our velocity change to a desired acceleration,
                    // aiming to complete the change in a single time step.

                    // (For best consistency, call this in FixedUpdate,
                    // and deltaTime will automatically give fixedDeltaTime)
                    var accel = deltaV / Time.deltaTime;

                    // Choose an acceleration limit depending on whether we're
                    // accelerating further in a similar direction, or braking.
                    var limit = Dot(deltaV, velocity) > 0f ? maxAccel : maxDecel;

                    // Enforce our acceleration limit, so we never exceed it.
                    var force = body.mass * Vector2.ClampMagnitude(accel, limit);

                    // Apply the computed force to our body.
                    body.AddForce(force, ForceMode2D.Force);



                    Separating acceleration & deceleration rates like this lets me give a sharper braking force, which tends to help the controls feel tight & responsive when stopping or changing directions, while keeping a smooth acceleration for getting up to speed. It also lets you penalize braking specifically when on ice or being knocked back.



                    We can make a control state parameters object to hold the max speed, acceleration, and deceleration rates for our air, ground, ice, knockback states etc. and use this to adjust our control handling very flexibly:



                    // Choose our current speed / acceleration parameters based on our state.
                    var controlState = GetCurrentControlState();

                    // Compute desired velocity.
                    var velocity = GetDesiredVelocityFromInput(controlState.maxSpeed);

                    // Try our best to reach that velocity, with our current parameters.
                    AccelerateTowards(
                    velocity,
                    controlState.maxAccel,
                    controlState.maxDecel
                    );





                    share|improve this answer











                    $endgroup$



                    Myself, I like to solve this by thinking of all player movement as acceleration-based.



                    I choose a target velocity using whatever complicated control logic I like, then ask the player avatar to accelerate toward that target, while respecting maximum acceleration rates I set.



                    Then, depending on the avatar's state (on ground, on ice, in the air, in a knockback state), I can change those acceleration rates to make the control input have a sharper or less pronounced impact.



                    Rigidbody2D body;

                    void AccelerateTowards(Vector2 targetVelocity, float maxAccel, float maxDecel)
                    // Compute desired velocity change.
                    var velocity = body.velocity;
                    var deltaV = targetVelocity - velocity;

                    // Convert our velocity change to a desired acceleration,
                    // aiming to complete the change in a single time step.

                    // (For best consistency, call this in FixedUpdate,
                    // and deltaTime will automatically give fixedDeltaTime)
                    var accel = deltaV / Time.deltaTime;

                    // Choose an acceleration limit depending on whether we're
                    // accelerating further in a similar direction, or braking.
                    var limit = Dot(deltaV, velocity) > 0f ? maxAccel : maxDecel;

                    // Enforce our acceleration limit, so we never exceed it.
                    var force = body.mass * Vector2.ClampMagnitude(accel, limit);

                    // Apply the computed force to our body.
                    body.AddForce(force, ForceMode2D.Force);



                    Separating acceleration & deceleration rates like this lets me give a sharper braking force, which tends to help the controls feel tight & responsive when stopping or changing directions, while keeping a smooth acceleration for getting up to speed. It also lets you penalize braking specifically when on ice or being knocked back.



                    We can make a control state parameters object to hold the max speed, acceleration, and deceleration rates for our air, ground, ice, knockback states etc. and use this to adjust our control handling very flexibly:



                    // Choose our current speed / acceleration parameters based on our state.
                    var controlState = GetCurrentControlState();

                    // Compute desired velocity.
                    var velocity = GetDesiredVelocityFromInput(controlState.maxSpeed);

                    // Try our best to reach that velocity, with our current parameters.
                    AccelerateTowards(
                    velocity,
                    controlState.maxAccel,
                    controlState.maxDecel
                    );






                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited 13 hours ago

























                    answered 14 hours ago









                    DMGregoryDMGregory

                    64.7k16115180




                    64.7k16115180











                    • $begingroup$
                      does deltatime automatically give fixedDeltaTime in fixedUpdate loop? That's really cool! I know I used to have to code around that, do you know when they added that?
                      $endgroup$
                      – gjh33
                      12 hours ago










                    • $begingroup$
                      I looked into it you're right. That's very useful. I don't remember that being a thing when I started working in unity, definitely makes reusing functions in different update loops way easier.
                      $endgroup$
                      – gjh33
                      12 hours ago
















                    • $begingroup$
                      does deltatime automatically give fixedDeltaTime in fixedUpdate loop? That's really cool! I know I used to have to code around that, do you know when they added that?
                      $endgroup$
                      – gjh33
                      12 hours ago










                    • $begingroup$
                      I looked into it you're right. That's very useful. I don't remember that being a thing when I started working in unity, definitely makes reusing functions in different update loops way easier.
                      $endgroup$
                      – gjh33
                      12 hours ago















                    $begingroup$
                    does deltatime automatically give fixedDeltaTime in fixedUpdate loop? That's really cool! I know I used to have to code around that, do you know when they added that?
                    $endgroup$
                    – gjh33
                    12 hours ago




                    $begingroup$
                    does deltatime automatically give fixedDeltaTime in fixedUpdate loop? That's really cool! I know I used to have to code around that, do you know when they added that?
                    $endgroup$
                    – gjh33
                    12 hours ago












                    $begingroup$
                    I looked into it you're right. That's very useful. I don't remember that being a thing when I started working in unity, definitely makes reusing functions in different update loops way easier.
                    $endgroup$
                    – gjh33
                    12 hours ago




                    $begingroup$
                    I looked into it you're right. That's very useful. I don't remember that being a thing when I started working in unity, definitely makes reusing functions in different update loops way easier.
                    $endgroup$
                    – gjh33
                    12 hours ago

















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Game Development Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    Use MathJax to format equations. MathJax reference.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgamedev.stackexchange.com%2fquestions%2f169839%2fhow-to-move-the-player-while-also-allowing-forces-to-affect-it%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

                    Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

                    Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367