Skip to content

Commit

Permalink
speed up a bit screwdriver animation
Browse files Browse the repository at this point in the history
  • Loading branch information
stilnat committed Oct 17, 2024
1 parent eb9f9fa commit cf265f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/SS3D/Systems/Crafting/ToolScrewdriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public override void StopAnimation()

private void AnimateScrewdriver()
{
_animation = transform.DORotate(new Vector3(0, 30, 0), 0.5f, RotateMode.LocalAxisAdd)
_animation = transform.DORotate(new Vector3(0, 30, 0), 0.3f, RotateMode.LocalAxisAdd)
.SetLoops(-1, LoopType.Yoyo)
.SetEase(Ease.InOutSine);
}
Expand Down

0 comments on commit cf265f8

Please sign in to comment.