-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
45037e8
commit d5e75b3
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule glTF-Sample-Renderer
updated
31 files
+2 −1 | README.md | |
+1 −1 | eslint.config.js | |
+12 −1 | package-lock.json | |
+3 −2 | package.json | |
+116 −21 | source/Renderer/renderer.js | |
+3 −0 | source/Renderer/shader.js | |
+1 −0 | source/gltf/accessor.js | |
+34 −0 | source/gltf/animatable_property.js | |
+79 −8 | source/gltf/animation.js | |
+1 −0 | source/gltf/animation_sampler.js | |
+1 −0 | source/gltf/asset.js | |
+1 −0 | source/gltf/buffer.js | |
+1 −0 | source/gltf/buffer_view.js | |
+82 −66 | source/gltf/camera.js | |
+23 −3 | source/gltf/channel.js | |
+31 −3 | source/gltf/gltf.js | |
+16 −0 | source/gltf/gltf_object.js | |
+1 −0 | source/gltf/image.js | |
+1 −0 | source/gltf/image_based_light.js | |
+28 −30 | source/gltf/light.js | |
+369 −402 | source/gltf/material.js | |
+2 −14 | source/gltf/mesh.js | |
+24 −72 | source/gltf/node.js | |
+1 −10 | source/gltf/primitive.js | |
+1 −0 | source/gltf/sampler.js | |
+1 −0 | source/gltf/scene.js | |
+1 −0 | source/gltf/skin.js | |
+20 −1 | source/gltf/texture.js | |
+5 −5 | source/gltf/user_camera.js | |
+7 −5 | source/gltf/utils.js | |
+1 −0 | source/gltf/variant.js |