Skip to content

Commit

Permalink
Fix incorrect initial rotation transfer value
Browse files Browse the repository at this point in the history
Should have been removed as part of #24360.
  • Loading branch information
peppy committed Oct 16, 2023
1 parent 10bab61 commit 0bb95cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void AddRotation(float delta)

if (!rotationTransferred)
{
currentRotation = Rotation * 2;
currentRotation = Rotation;
rotationTransferred = true;
}

Expand Down

0 comments on commit 0bb95cf

Please sign in to comment.