Skip to content

Commit fe21e02

Browse files
committed
init
1 parent 0a23615 commit fe21e02

File tree

6 files changed

+782
-1
lines changed

6 files changed

+782
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
packahe-lock.json

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
# three-animationpointer
1+
# KHR_animation_pointer for three.js
2+
3+
This package adds a [three.js](https://github.com/mrdoob/three.js) GLTFLoader plugin for [KHR_animation_pointer](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_animation_pointer) support.
4+
5+
## Links
6+
7+
- [three.js PR #24108](https://github.com/mrdoob/three.js/pull/24108)

package-lock.json

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "@needle-tools/three-animationpointer",
3+
"version": "1.0.0",
4+
"description": "KHR_animation_pointer support for three.js",
5+
"type": "module",
6+
"main": "src/index.js",
7+
"author": {
8+
"name": "Needle",
9+
"email": "[email protected]",
10+
"url": "https://needle.tools/"
11+
},
12+
"license": "MIT",
13+
"devDependencies": {
14+
"three": ">=0.179.1"
15+
},
16+
"peerDependencies": {
17+
"three": ">=0.165.0"
18+
}
19+
}

0 commit comments

Comments
 (0)