@perplexdotgg/bounce 1.2.2 → 1.2.3
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 +9 -5
- package/docs/documentation.md +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
[](https://www.npmjs.com/package/@perplexdotgg/bounce)
|
|
2
|
+
[](https://codeberg.org/perplexdotgg/bounce)
|
|
3
|
+
[](http://codeberg.org/perplexdotgg/bounce/src/branch/main/LICENSE)
|
|
4
|
+
[](https://codeberg.org/perplexdotgg/bounce/pulls)
|
|
5
|
+
|
|
6
|
+
# Bounce · Premium 3D Physics for the Web
|
|
4
7
|
|
|
5
8
|
Bounce is a fast and determinstic 3D physics library for Typescript and Javascript projects. Bounce is written in pure Typsescript (no WebAssembly).
|
|
6
9
|
|
|
7
10
|
## Links
|
|
8
11
|
|
|
9
12
|
- Documentation (markdown): https://codeberg.org/perplexdotgg/bounce/src/branch/main/docs/documentation.md
|
|
10
|
-
- Official Bounce website with demos, API and more info: https://perplex.gg/bounce
|
|
11
13
|
- NPM Package: https://www.npmjs.com/package/@perplexdotgg/bounce
|
|
14
|
+
- Official Bounce website with demos, API and more info: https://perplex.gg/bounce
|
|
15
|
+
- Reference character controller implementation: https://codeberg.org/perplexdotgg/bounce-character-controller
|
|
12
16
|
|
|
13
17
|
## Official Examples
|
|
14
18
|
|
|
@@ -40,4 +44,4 @@ Although Bounce is mostly original code, it is inspired by and draws heavily fro
|
|
|
40
44
|
|
|
41
45
|
## How to contribute
|
|
42
46
|
|
|
43
|
-
If you like this project and would like to support our work, please consider contributing code via pull requests, or donating via [open collective](https://opencollective.com/perplexgg). Contributions are greatly appreciated!
|
|
47
|
+
If you like this project and would like to support our work, please consider contributing code via [pull requests](https://codeberg.org/perplexdotgg/bounce/pulls), or donating via [open collective](https://opencollective.com/perplexgg). Contributions are greatly appreciated!
|
package/docs/documentation.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Bounce API Reference
|
|
2
2
|
|
|
3
|
-
Bounce is a fast, deterministic 3D physics library for TypeScript and JavaScript. It's written in pure TypeScript (no WebAssembly).
|
|
3
|
+
Bounce is a fast, deterministic 3D physics library for TypeScript and JavaScript projects. It's written in pure TypeScript (no WebAssembly).
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@perplexdotgg/bounce",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Bounce",
|
|
6
6
|
"main": "./build/bounce.js",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"test": "vitest"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"monomorph": "^1.5.
|
|
15
|
+
"monomorph": "^1.5.3"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/node": "^24.9.2",
|
|
@@ -28,5 +28,6 @@
|
|
|
28
28
|
"repository": {
|
|
29
29
|
"type": "git",
|
|
30
30
|
"url": "https://codeberg.org/perplexdotgg/bounce"
|
|
31
|
-
}
|
|
31
|
+
},
|
|
32
|
+
"funding": "https://opencollective.com/perplexgg"
|
|
32
33
|
}
|