-
Notifications
You must be signed in to change notification settings - Fork 0
Formulas
camnewnham edited this page Oct 19, 2023
·
1 revision
Formula to perform a ripple animation. Fancy effect for showing parts animating in to place all at once rather than one by one.
Min(1,Max(0,(a*v-a)+t*(a+1)))
a = amount of overlap, number
v = value (0-1), number[]
t = time (0-1), number
When a
is low, many things will animate at once.
When a
is high (in this example, 5) the number of things moving at once will be reduced.