Skip to content

Commit b88328a

Browse files
expose spring's destination override
1 parent d3b48db commit b88328a

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

README.md

-9
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,6 @@ Parameters:
7575
Supports various numeric types: `number`, `Float64Array`, `Float32Array`, `Uint32Array`,
7676
`Int32Array`, `Uint16Array`, `Int16Array`, `Uint8Array`, `Int8Array`, `Array<number>`.
7777

78-
## Types
79-
80-
Extra types provided for TypeScript:
81-
82-
- `Motion<Value>`: Represents an animatable value with methods:
83-
- `update()`: Updates the motion state.
84-
- `complete()`: Checks if the motion is complete.
85-
- `interpolate(t: number)`: Interpolates the motion value at a given time t.
86-
8778
## Cancelling Animations
8879

8980
You can cancel ongoing animations using an `AbortSignal`:

modules/spring.js

+6
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ function singlespring(current, destination, damping, stiffness, precision) {
3737
velocity = tuple[1];
3838
}
3939
},
40+
destination(v) {
41+
destination = v;
42+
},
4043
complete() {
4144
if (velocity !== 0 || current !== destination) return false;
4245
return true;
@@ -68,6 +71,9 @@ function multispring(current, destination, damping, stiffness, precision) {
6871
}
6972
}
7073
},
74+
destination(v) {
75+
destination = v;
76+
},
7177
complete() {
7278
for (let i = 0; i < current.length; i++) {
7379
if (velocity[i] !== 0 || current[i] !== destination[i]) return false;

oscillation.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ export function motion<List extends [Motion<any>, ...Motion<any>[]]>(
5050

5151
export type Motion<Value> = {
5252
update(n: number): void;
53+
destination(v: Value): void;
5354
complete(): boolean;
5455
interpolate(t: number): Value;
5556
};

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "oscillation",
33
"description": "An animation library",
4-
"version": "0.4.0",
4+
"version": "0.4.1",
55
"license": "ISC",
66
"author": "Oleksii Raspopov",
77
"repository": "UnknownPrinciple/oscillation",

0 commit comments

Comments
 (0)