@ue-too/dynamics 0.12.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -426,7 +426,7 @@ world.setSpatialIndexType('dynamictree');
|
|
|
426
426
|
|
|
427
427
|
## API Reference
|
|
428
428
|
|
|
429
|
-
For complete API documentation with detailed type information, see the [TypeDoc-generated documentation](
|
|
429
|
+
For complete API documentation with detailed type information, see the [TypeDoc-generated documentation](/dynamics/).
|
|
430
430
|
|
|
431
431
|
## TypeScript Support
|
|
432
432
|
|
|
@@ -522,9 +522,9 @@ world.debugDraw = (ctx: CanvasRenderingContext2D) => {
|
|
|
522
522
|
|
|
523
523
|
## Related Packages
|
|
524
524
|
|
|
525
|
-
- **[@ue-too/math](
|
|
526
|
-
- **[@ue-too/ecs](
|
|
527
|
-
- **[@ue-too/board](
|
|
525
|
+
- **[@ue-too/math](/math/)**: Vector operations used throughout the physics engine
|
|
526
|
+
- **[@ue-too/ecs](/ecs/)**: Entity Component System that can integrate with physics
|
|
527
|
+
- **[@ue-too/board](/board/)**: Canvas board for rendering physics simulations
|
|
528
528
|
|
|
529
529
|
## Further Reading
|
|
530
530
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ue-too/dynamics",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.13.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"./package.json": "./package.json"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@ue-too/math": "^0.
|
|
24
|
-
"@ue-too/ecs": "^0.
|
|
23
|
+
"@ue-too/math": "^0.13.0",
|
|
24
|
+
"@ue-too/ecs": "^0.13.0"
|
|
25
25
|
},
|
|
26
26
|
"main": "./index.js",
|
|
27
27
|
"types": "./index.d.ts",
|