Skip to content

Commit 1c50a3f

Browse files
committed
build v1.3.0
1 parent ce1c486 commit 1c50a3f

20 files changed

+3725
-2359
lines changed

.changeset/breezy-eyes-obey.md

-5
This file was deleted.

.changeset/gentle-colts-hunt.md

-5
This file was deleted.

.changeset/heavy-kings-hide.md

-5
This file was deleted.

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# planck
22

3+
## 1.3.0
4+
5+
### Minor Changes
6+
7+
- bb9bb87: Testbed rendering rewrite
8+
- 56193e7: Add DataDriver (experimental for demo use-case)
9+
10+
### Patch Changes
11+
12+
- ce1c486: No pointer interaction when mouseForce===0
13+
314
## 1.2.0
415

516
### Minor Changes

dist/planck-with-testbed.d.ts

+15
Original file line numberDiff line numberDiff line change
@@ -4223,6 +4223,21 @@ export declare const internal: {
42234223
toString(newline?: string): string;
42244224
};
42254225
};
4226+
export interface DataDriverListener<D, R> {
4227+
enter: (d: D) => R | null;
4228+
exit: (d: D, ref: R) => void;
4229+
update: (d: D, ref: R) => void;
4230+
}
4231+
/**
4232+
* @experimental
4233+
*
4234+
* DataDriver is used it to create, update and destroy physics entities based on game objects.
4235+
*/
4236+
export declare class DataDriver<D extends object, R> {
4237+
constructor(key: (d: D) => string, listener: DataDriverListener<D, R>);
4238+
update(data: (D | null)[]): void;
4239+
ref(d: D): R;
4240+
}
42264241

42274242
export {
42284243
Body$1 as Body,

0 commit comments

Comments
 (0)