Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5a532c10 authored by Selim Cinek's avatar Selim Cinek
Browse files

Tuned the notificaiton physics spring parameters

We want a little more springiness in our lives
(and animations)

Bug: 393581344
Test: manual
Flag: com.android.systemui.physical_notification_movement
Change-Id: I13b5f015cba07cebf08d8abcb4d15be3323bcfa0
parent 88834a87
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -88,8 +88,8 @@ class PhysicsPropertyAnimator {
        @JvmStatic
        fun createDefaultSpring(): SpringForce {
            return SpringForce()
                .setStiffness(380f) // MEDIUM LOW STIFFNESS
                .setDampingRatio(SpringForce.DAMPING_RATIO_LOW_BOUNCY) // LOW BOUNCINESS
                .setStiffness(380f)
                .setDampingRatio(0.68f);
        }

        @JvmStatic