Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Acceleration is zero if character is non locally controlled. #493

Open
Anma-wp opened this issue Jul 6, 2024 · 1 comment
Open

Acceleration is zero if character is non locally controlled. #493

Anma-wp opened this issue Jul 6, 2024 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@Anma-wp
Copy link

Anma-wp commented Jul 6, 2024

Acceleration is zero if character is non locally controlled.
ALSBaseCharacter.cpp line 973.
Acceleration = NewAcceleration.IsNearlyZero() || IsLocallyControlled() ? NewAcceleration : Acceleration / 2;
I think it should be:
Acceleration = NewAcceleration.IsNearlyZero() || IsLocallyControlled() ? NewAcceleration : NewAcceleration / 2;

@Anma-wp Anma-wp added the bug Something isn't working label Jul 6, 2024
@dyanikoglu
Copy link
Member

Screenshot 2024-07-09 133753

Can you verify those options are enabled for your character in character movement component?

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants