diff --git a/Assets/Scripts/SS3D/Systems/Crafting/ToolScrewdriver.cs b/Assets/Scripts/SS3D/Systems/Crafting/ToolScrewdriver.cs index 414bf1915..44647a165 100644 --- a/Assets/Scripts/SS3D/Systems/Crafting/ToolScrewdriver.cs +++ b/Assets/Scripts/SS3D/Systems/Crafting/ToolScrewdriver.cs @@ -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); }