angular-three 0.0.2 → 0.0.4
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/attributes/README.md +3 -0
- package/attributes/index.d.ts +22 -0
- package/attributes/lib/buffer-attribute/buffer-attribute.d.ts +8 -0
- package/attributes/lib/color-attribute/color-attribute.d.ts +8 -0
- package/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.d.ts +8 -0
- package/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.d.ts +8 -0
- package/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.d.ts +8 -0
- package/attributes/lib/fog-attribute/fog-attribute.d.ts +8 -0
- package/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.d.ts +8 -0
- package/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.d.ts +8 -0
- package/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.d.ts +8 -0
- package/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.d.ts +8 -0
- package/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.d.ts +8 -0
- package/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.d.ts +8 -0
- package/attributes/lib/matrix3-attribute/matrix3-attribute.d.ts +8 -0
- package/attributes/lib/matrix4-attribute/matrix4-attribute.d.ts +8 -0
- package/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.d.ts +8 -0
- package/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.d.ts +8 -0
- package/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.d.ts +8 -0
- package/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.d.ts +8 -0
- package/attributes/lib/value-attribute/value-attribute.d.ts +8 -0
- package/attributes/lib/vector2-attribute/vector2-attribute.d.ts +8 -0
- package/attributes/lib/vector3-attribute/vector3-attribute.d.ts +8 -0
- package/attributes/lib/vector4-attribute/vector4-attribute.d.ts +8 -0
- package/audios/README.md +3 -0
- package/audios/index.d.ts +3 -0
- package/audios/lib/audio/audio.d.ts +49 -0
- package/audios/lib/audio-listener/audio-listener.d.ts +35 -0
- package/audios/lib/positional-audio/positional-audio.d.ts +49 -0
- package/cameras/README.md +3 -0
- package/cameras/index.d.ts +5 -0
- package/cameras/lib/array-camera/array-camera.d.ts +56 -0
- package/cameras/lib/cube-camera/cube-camera.d.ts +36 -0
- package/cameras/lib/orthographic-camera/orthographic-camera.d.ts +54 -0
- package/cameras/lib/perspective-camera/perspective-camera.d.ts +55 -0
- package/cameras/lib/stereo-camera/stereo-camera.d.ts +42 -0
- package/esm2020/attributes/angular-three-attributes.mjs +5 -0
- package/esm2020/attributes/index.mjs +24 -0
- package/esm2020/attributes/lib/buffer-attribute/buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/color-attribute/color-attribute.mjs +25 -0
- package/esm2020/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/fog-attribute/fog-attribute.mjs +25 -0
- package/esm2020/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.mjs +25 -0
- package/esm2020/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.mjs +29 -0
- package/esm2020/attributes/lib/matrix3-attribute/matrix3-attribute.mjs +25 -0
- package/esm2020/attributes/lib/matrix4-attribute/matrix4-attribute.mjs +25 -0
- package/esm2020/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/value-attribute/value-attribute.mjs +27 -0
- package/esm2020/attributes/lib/vector2-attribute/vector2-attribute.mjs +25 -0
- package/esm2020/attributes/lib/vector3-attribute/vector3-attribute.mjs +25 -0
- package/esm2020/attributes/lib/vector4-attribute/vector4-attribute.mjs +25 -0
- package/esm2020/audios/angular-three-audios.mjs +5 -0
- package/esm2020/audios/index.mjs +5 -0
- package/esm2020/audios/lib/audio/audio.mjs +68 -0
- package/esm2020/audios/lib/audio-listener/audio-listener.mjs +65 -0
- package/esm2020/audios/lib/positional-audio/positional-audio.mjs +68 -0
- package/esm2020/cameras/angular-three-cameras.mjs +5 -0
- package/esm2020/cameras/index.mjs +7 -0
- package/esm2020/cameras/lib/array-camera/array-camera.mjs +67 -0
- package/esm2020/cameras/lib/cube-camera/cube-camera.mjs +55 -0
- package/esm2020/cameras/lib/orthographic-camera/orthographic-camera.mjs +65 -0
- package/esm2020/cameras/lib/perspective-camera/perspective-camera.mjs +66 -0
- package/esm2020/cameras/lib/stereo-camera/stereo-camera.mjs +61 -0
- package/esm2020/geometries/angular-three-geometries.mjs +5 -0
- package/esm2020/geometries/index.mjs +25 -0
- package/esm2020/geometries/lib/box-geometry/box-geometry.mjs +25 -0
- package/esm2020/geometries/lib/buffer-geometry/buffer-geometry.mjs +25 -0
- package/esm2020/geometries/lib/capsule-geometry/capsule-geometry.mjs +25 -0
- package/esm2020/geometries/lib/circle-geometry/circle-geometry.mjs +25 -0
- package/esm2020/geometries/lib/cone-geometry/cone-geometry.mjs +25 -0
- package/esm2020/geometries/lib/cylinder-geometry/cylinder-geometry.mjs +25 -0
- package/esm2020/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.mjs +25 -0
- package/esm2020/geometries/lib/edges-geometry/edges-geometry.mjs +25 -0
- package/esm2020/geometries/lib/extrude-geometry/extrude-geometry.mjs +25 -0
- package/esm2020/geometries/lib/icosahedron-geometry/icosahedron-geometry.mjs +25 -0
- package/esm2020/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.mjs +25 -0
- package/esm2020/geometries/lib/lathe-geometry/lathe-geometry.mjs +25 -0
- package/esm2020/geometries/lib/octahedron-geometry/octahedron-geometry.mjs +25 -0
- package/esm2020/geometries/lib/plane-geometry/plane-geometry.mjs +25 -0
- package/esm2020/geometries/lib/polyhedron-geometry/polyhedron-geometry.mjs +25 -0
- package/esm2020/geometries/lib/ring-geometry/ring-geometry.mjs +25 -0
- package/esm2020/geometries/lib/shape-geometry/shape-geometry.mjs +25 -0
- package/esm2020/geometries/lib/sphere-geometry/sphere-geometry.mjs +25 -0
- package/esm2020/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.mjs +25 -0
- package/esm2020/geometries/lib/torus-geometry/torus-geometry.mjs +25 -0
- package/esm2020/geometries/lib/torus-knot-geometry/torus-knot-geometry.mjs +25 -0
- package/esm2020/geometries/lib/tube-geometry/tube-geometry.mjs +25 -0
- package/esm2020/geometries/lib/wireframe-geometry/wireframe-geometry.mjs +25 -0
- package/esm2020/helpers/angular-three-helpers.mjs +5 -0
- package/esm2020/helpers/index.mjs +15 -0
- package/esm2020/helpers/lib/arrow-helper/arrow-helper.mjs +25 -0
- package/esm2020/helpers/lib/axes-helper/axes-helper.mjs +25 -0
- package/esm2020/helpers/lib/box-helper/box-helper.mjs +35 -0
- package/esm2020/helpers/lib/box3-helper/box3-helper.mjs +35 -0
- package/esm2020/helpers/lib/camera-helper/camera-helper.mjs +35 -0
- package/esm2020/helpers/lib/directional-light-helper/directional-light-helper.mjs +35 -0
- package/esm2020/helpers/lib/grid-helper/grid-helper.mjs +25 -0
- package/esm2020/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.mjs +35 -0
- package/esm2020/helpers/lib/plane-helper/plane-helper.mjs +35 -0
- package/esm2020/helpers/lib/point-light-helper/point-light-helper.mjs +35 -0
- package/esm2020/helpers/lib/polar-grid-helper/polar-grid-helper.mjs +25 -0
- package/esm2020/helpers/lib/skeleton-helper/skeleton-helper.mjs +35 -0
- package/esm2020/helpers/lib/spot-light-helper/spot-light-helper.mjs +35 -0
- package/esm2020/index.mjs +39 -2
- package/esm2020/lib/canvas.mjs +229 -0
- package/esm2020/lib/di/resize.mjs +19 -0
- package/esm2020/lib/di/window.mjs +13 -0
- package/esm2020/lib/directives/args.mjs +30 -0
- package/esm2020/lib/directives/cursor.mjs +35 -0
- package/esm2020/lib/directives/repeat.mjs +20 -0
- package/esm2020/lib/events.mjs +53 -0
- package/esm2020/lib/instance.mjs +368 -0
- package/esm2020/lib/pipes/math.mjs +15 -0
- package/esm2020/lib/pipes/pi.mjs +14 -0
- package/esm2020/lib/pipes/radian.mjs +14 -0
- package/esm2020/lib/pipes/side.mjs +22 -0
- package/esm2020/lib/ref.mjs +15 -0
- package/esm2020/lib/services/loader.mjs +45 -0
- package/esm2020/lib/services/resize.mjs +127 -0
- package/esm2020/lib/stores/component-store.mjs +137 -0
- package/esm2020/lib/stores/store.mjs +433 -0
- package/esm2020/lib/types.mjs +2 -0
- package/esm2020/lib/utils/apply-props.mjs +135 -0
- package/esm2020/lib/utils/build-graph.mjs +15 -0
- package/esm2020/lib/utils/camera.mjs +28 -0
- package/esm2020/lib/utils/capitalize.mjs +4 -0
- package/esm2020/lib/utils/check-update.mjs +22 -0
- package/esm2020/lib/utils/events.mjs +353 -0
- package/esm2020/lib/utils/get-instance-local-state.mjs +6 -0
- package/esm2020/lib/utils/inject.mjs +18 -0
- package/esm2020/lib/utils/instance.mjs +35 -0
- package/esm2020/lib/utils/is.mjs +54 -0
- package/esm2020/lib/utils/loop.mjs +139 -0
- package/esm2020/lib/utils/make.mjs +30 -0
- package/esm2020/lib/utils/mutate.mjs +24 -0
- package/esm2020/lib/utils/proxy.mjs +99 -0
- package/esm2020/lib/utils/renderer.mjs +15 -0
- package/esm2020/lights/angular-three-lights.mjs +5 -0
- package/esm2020/lights/index.mjs +11 -0
- package/esm2020/lights/lib/ambient-light/ambient-light.mjs +58 -0
- package/esm2020/lights/lib/ambient-light-probe/ambient-light-probe.mjs +59 -0
- package/esm2020/lights/lib/directional-light/directional-light.mjs +59 -0
- package/esm2020/lights/lib/hemisphere-light/hemisphere-light.mjs +60 -0
- package/esm2020/lights/lib/hemisphere-light-probe/hemisphere-light-probe.mjs +61 -0
- package/esm2020/lights/lib/light-probe/light-probe.mjs +59 -0
- package/esm2020/lights/lib/point-light/point-light.mjs +61 -0
- package/esm2020/lights/lib/rect-area-light/rect-area-light.mjs +61 -0
- package/esm2020/lights/lib/spot-light/spot-light.mjs +64 -0
- package/esm2020/materials/angular-three-materials.mjs +5 -0
- package/esm2020/materials/index.mjs +19 -0
- package/esm2020/materials/lib/line-basic-material/line-basic-material.mjs +76 -0
- package/esm2020/materials/lib/line-dashed-material/line-dashed-material.mjs +79 -0
- package/esm2020/materials/lib/mesh-basic-material/mesh-basic-material.mjs +88 -0
- package/esm2020/materials/lib/mesh-depth-material/mesh-depth-material.mjs +79 -0
- package/esm2020/materials/lib/mesh-distance-material/mesh-distance-material.mjs +79 -0
- package/esm2020/materials/lib/mesh-lambert-material/mesh-lambert-material.mjs +99 -0
- package/esm2020/materials/lib/mesh-matcap-material/mesh-matcap-material.mjs +85 -0
- package/esm2020/materials/lib/mesh-normal-material/mesh-normal-material.mjs +82 -0
- package/esm2020/materials/lib/mesh-phong-material/mesh-phong-material.mjs +102 -0
- package/esm2020/materials/lib/mesh-physical-material/mesh-physical-material.mjs +118 -0
- package/esm2020/materials/lib/mesh-standard-material/mesh-standard-material.mjs +99 -0
- package/esm2020/materials/lib/mesh-toon-material/mesh-toon-material.mjs +95 -0
- package/esm2020/materials/lib/points-material/points-material.mjs +77 -0
- package/esm2020/materials/lib/raw-shader-material/raw-shader-material.mjs +82 -0
- package/esm2020/materials/lib/shader-material/shader-material.mjs +82 -0
- package/esm2020/materials/lib/shadow-material/shadow-material.mjs +73 -0
- package/esm2020/materials/lib/sprite-material/sprite-material.mjs +77 -0
- package/esm2020/objects/angular-three-objects.mjs +5 -0
- package/esm2020/objects/index.mjs +14 -0
- package/esm2020/objects/lib/bone/bone.mjs +54 -0
- package/esm2020/objects/lib/group/group.mjs +54 -0
- package/esm2020/objects/lib/instanced-mesh/instanced-mesh.mjs +63 -0
- package/esm2020/objects/lib/line/line.mjs +58 -0
- package/esm2020/objects/lib/line-loop/line-loop.mjs +58 -0
- package/esm2020/objects/lib/line-segments/line-segments.mjs +58 -0
- package/esm2020/objects/lib/lod/lod.mjs +56 -0
- package/esm2020/objects/lib/mesh/mesh.mjs +58 -0
- package/esm2020/objects/lib/points/points.mjs +58 -0
- package/esm2020/objects/lib/skeleton/skeleton.mjs +40 -0
- package/esm2020/objects/lib/skinned-mesh/skinned-mesh.mjs +62 -0
- package/esm2020/objects/lib/sprite/sprite.mjs +57 -0
- package/esm2020/primitives/angular-three-primitives.mjs +5 -0
- package/esm2020/primitives/index.mjs +3 -0
- package/esm2020/primitives/lib/object-primitive/object-primitive.mjs +54 -0
- package/esm2020/primitives/lib/primitive/primitive.mjs +37 -0
- package/esm2020/stats/angular-three-stats.mjs +5 -0
- package/esm2020/stats/index.mjs +2 -0
- package/esm2020/stats/lib/stats/stats.mjs +54 -0
- package/esm2020/textures/angular-three-textures.mjs +5 -0
- package/esm2020/textures/index.mjs +12 -0
- package/esm2020/textures/lib/canvas-texture/canvas-texture.mjs +25 -0
- package/esm2020/textures/lib/compressed-array-texture/compressed-array-texture.mjs +25 -0
- package/esm2020/textures/lib/compressed-texture/compressed-texture.mjs +25 -0
- package/esm2020/textures/lib/cube-texture/cube-texture.mjs +25 -0
- package/esm2020/textures/lib/data-array-texture/data-array-texture.mjs +25 -0
- package/esm2020/textures/lib/data-texture/data-texture.mjs +25 -0
- package/esm2020/textures/lib/data3-dtexture/data3-dtexture.mjs +25 -0
- package/esm2020/textures/lib/depth-texture/depth-texture.mjs +25 -0
- package/esm2020/textures/lib/framebuffer-texture/framebuffer-texture.mjs +25 -0
- package/esm2020/textures/lib/video-texture/video-texture.mjs +25 -0
- package/fesm2015/angular-three-attributes.mjs +462 -0
- package/fesm2015/angular-three-attributes.mjs.map +1 -0
- package/fesm2015/angular-three-audios.mjs +201 -0
- package/fesm2015/angular-three-audios.mjs.map +1 -0
- package/fesm2015/angular-three-cameras.mjs +304 -0
- package/fesm2015/angular-three-cameras.mjs.map +1 -0
- package/fesm2015/angular-three-geometries.mjs +475 -0
- package/fesm2015/angular-three-geometries.mjs.map +1 -0
- package/fesm2015/angular-three-helpers.mjs +365 -0
- package/fesm2015/angular-three-helpers.mjs.map +1 -0
- package/fesm2015/angular-three-lights.mjs +511 -0
- package/fesm2015/angular-three-lights.mjs.map +1 -0
- package/fesm2015/angular-three-materials.mjs +1402 -0
- package/fesm2015/angular-three-materials.mjs.map +1 -0
- package/fesm2015/angular-three-objects.mjs +630 -0
- package/fesm2015/angular-three-objects.mjs.map +1 -0
- package/fesm2015/angular-three-primitives.mjs +95 -0
- package/fesm2015/angular-three-primitives.mjs.map +1 -0
- package/fesm2015/angular-three-stats.mjs +62 -0
- package/fesm2015/angular-three-stats.mjs.map +1 -0
- package/fesm2015/angular-three-textures.mjs +215 -0
- package/fesm2015/angular-three-textures.mjs.map +1 -0
- package/fesm2015/angular-three.mjs +2448 -10
- package/fesm2015/angular-three.mjs.map +1 -1
- package/fesm2020/angular-three-attributes.mjs +462 -0
- package/fesm2020/angular-three-attributes.mjs.map +1 -0
- package/fesm2020/angular-three-audios.mjs +201 -0
- package/fesm2020/angular-three-audios.mjs.map +1 -0
- package/fesm2020/angular-three-cameras.mjs +304 -0
- package/fesm2020/angular-three-cameras.mjs.map +1 -0
- package/fesm2020/angular-three-geometries.mjs +475 -0
- package/fesm2020/angular-three-geometries.mjs.map +1 -0
- package/fesm2020/angular-three-helpers.mjs +365 -0
- package/fesm2020/angular-three-helpers.mjs.map +1 -0
- package/fesm2020/angular-three-lights.mjs +511 -0
- package/fesm2020/angular-three-lights.mjs.map +1 -0
- package/fesm2020/angular-three-materials.mjs +1402 -0
- package/fesm2020/angular-three-materials.mjs.map +1 -0
- package/fesm2020/angular-three-objects.mjs +630 -0
- package/fesm2020/angular-three-objects.mjs.map +1 -0
- package/fesm2020/angular-three-primitives.mjs +95 -0
- package/fesm2020/angular-three-primitives.mjs.map +1 -0
- package/fesm2020/angular-three-stats.mjs +62 -0
- package/fesm2020/angular-three-stats.mjs.map +1 -0
- package/fesm2020/angular-three-textures.mjs +215 -0
- package/fesm2020/angular-three-textures.mjs.map +1 -0
- package/fesm2020/angular-three.mjs +2462 -10
- package/fesm2020/angular-three.mjs.map +1 -1
- package/geometries/README.md +3 -0
- package/geometries/index.d.ts +23 -0
- package/geometries/lib/box-geometry/box-geometry.d.ts +8 -0
- package/geometries/lib/buffer-geometry/buffer-geometry.d.ts +8 -0
- package/geometries/lib/capsule-geometry/capsule-geometry.d.ts +8 -0
- package/geometries/lib/circle-geometry/circle-geometry.d.ts +8 -0
- package/geometries/lib/cone-geometry/cone-geometry.d.ts +8 -0
- package/geometries/lib/cylinder-geometry/cylinder-geometry.d.ts +8 -0
- package/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.d.ts +8 -0
- package/geometries/lib/edges-geometry/edges-geometry.d.ts +8 -0
- package/geometries/lib/extrude-geometry/extrude-geometry.d.ts +8 -0
- package/geometries/lib/icosahedron-geometry/icosahedron-geometry.d.ts +8 -0
- package/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.d.ts +8 -0
- package/geometries/lib/lathe-geometry/lathe-geometry.d.ts +8 -0
- package/geometries/lib/octahedron-geometry/octahedron-geometry.d.ts +8 -0
- package/geometries/lib/plane-geometry/plane-geometry.d.ts +8 -0
- package/geometries/lib/polyhedron-geometry/polyhedron-geometry.d.ts +8 -0
- package/geometries/lib/ring-geometry/ring-geometry.d.ts +8 -0
- package/geometries/lib/shape-geometry/shape-geometry.d.ts +8 -0
- package/geometries/lib/sphere-geometry/sphere-geometry.d.ts +8 -0
- package/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.d.ts +8 -0
- package/geometries/lib/torus-geometry/torus-geometry.d.ts +8 -0
- package/geometries/lib/torus-knot-geometry/torus-knot-geometry.d.ts +8 -0
- package/geometries/lib/tube-geometry/tube-geometry.d.ts +8 -0
- package/geometries/lib/wireframe-geometry/wireframe-geometry.d.ts +8 -0
- package/helpers/README.md +3 -0
- package/helpers/index.d.ts +13 -0
- package/helpers/lib/arrow-helper/arrow-helper.d.ts +8 -0
- package/helpers/lib/axes-helper/axes-helper.d.ts +8 -0
- package/helpers/lib/box-helper/box-helper.d.ts +8 -0
- package/helpers/lib/box3-helper/box3-helper.d.ts +8 -0
- package/helpers/lib/camera-helper/camera-helper.d.ts +8 -0
- package/helpers/lib/directional-light-helper/directional-light-helper.d.ts +8 -0
- package/helpers/lib/grid-helper/grid-helper.d.ts +8 -0
- package/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.d.ts +8 -0
- package/helpers/lib/plane-helper/plane-helper.d.ts +8 -0
- package/helpers/lib/point-light-helper/point-light-helper.d.ts +8 -0
- package/helpers/lib/polar-grid-helper/polar-grid-helper.d.ts +8 -0
- package/helpers/lib/skeleton-helper/skeleton-helper.d.ts +8 -0
- package/helpers/lib/spot-light-helper/spot-light-helper.d.ts +8 -0
- package/index.d.ts +38 -1
- package/lib/canvas.d.ts +46 -0
- package/lib/di/resize.d.ts +12 -0
- package/lib/di/window.d.ts +1 -0
- package/lib/directives/args.d.ts +19 -0
- package/lib/directives/cursor.d.ts +7 -0
- package/lib/directives/repeat.d.ts +7 -0
- package/lib/events.d.ts +2 -0
- package/lib/instance.d.ts +81 -0
- package/lib/pipes/math.d.ts +7 -0
- package/lib/pipes/pi.d.ts +7 -0
- package/lib/pipes/radian.d.ts +7 -0
- package/lib/pipes/side.d.ts +8 -0
- package/lib/ref.d.ts +5 -0
- package/lib/services/loader.d.ts +11 -0
- package/lib/services/resize.d.ts +19 -0
- package/lib/stores/component-store.d.ts +69 -0
- package/lib/stores/store.d.ts +32 -0
- package/lib/types.d.ts +358 -0
- package/lib/utils/apply-props.d.ts +6 -0
- package/lib/utils/build-graph.d.ts +3 -0
- package/lib/utils/camera.d.ts +4 -0
- package/lib/utils/capitalize.d.ts +1 -0
- package/lib/utils/check-update.d.ts +2 -0
- package/lib/utils/events.d.ts +6 -0
- package/lib/utils/get-instance-local-state.d.ts +2 -0
- package/lib/utils/inject.d.ts +9 -0
- package/lib/utils/instance.d.ts +4 -0
- package/lib/utils/is.d.ts +21 -0
- package/lib/utils/loop.d.ts +32 -0
- package/lib/utils/make.d.ts +4 -0
- package/lib/utils/mutate.d.ts +2 -0
- package/lib/utils/proxy.d.ts +7 -0
- package/lib/utils/renderer.d.ts +3 -0
- package/lights/README.md +3 -0
- package/lights/index.d.ts +9 -0
- package/lights/lib/ambient-light/ambient-light.d.ts +39 -0
- package/lights/lib/ambient-light-probe/ambient-light-probe.d.ts +40 -0
- package/lights/lib/directional-light/directional-light.d.ts +40 -0
- package/lights/lib/hemisphere-light/hemisphere-light.d.ts +41 -0
- package/lights/lib/hemisphere-light-probe/hemisphere-light-probe.d.ts +42 -0
- package/lights/lib/light-probe/light-probe.d.ts +40 -0
- package/lights/lib/point-light/point-light.d.ts +42 -0
- package/lights/lib/rect-area-light/rect-area-light.d.ts +42 -0
- package/lights/lib/spot-light/spot-light.d.ts +45 -0
- package/materials/README.md +3 -0
- package/materials/index.d.ts +17 -0
- package/materials/lib/line-basic-material/line-basic-material.d.ts +55 -0
- package/materials/lib/line-dashed-material/line-dashed-material.d.ts +58 -0
- package/materials/lib/mesh-basic-material/mesh-basic-material.d.ts +67 -0
- package/materials/lib/mesh-depth-material/mesh-depth-material.d.ts +58 -0
- package/materials/lib/mesh-distance-material/mesh-distance-material.d.ts +58 -0
- package/materials/lib/mesh-lambert-material/mesh-lambert-material.d.ts +78 -0
- package/materials/lib/mesh-matcap-material/mesh-matcap-material.d.ts +64 -0
- package/materials/lib/mesh-normal-material/mesh-normal-material.d.ts +61 -0
- package/materials/lib/mesh-phong-material/mesh-phong-material.d.ts +81 -0
- package/materials/lib/mesh-physical-material/mesh-physical-material.d.ts +97 -0
- package/materials/lib/mesh-standard-material/mesh-standard-material.d.ts +78 -0
- package/materials/lib/mesh-toon-material/mesh-toon-material.d.ts +74 -0
- package/materials/lib/points-material/points-material.d.ts +56 -0
- package/materials/lib/raw-shader-material/raw-shader-material.d.ts +68 -0
- package/materials/lib/shader-material/shader-material.d.ts +68 -0
- package/materials/lib/shadow-material/shadow-material.d.ts +52 -0
- package/materials/lib/sprite-material/sprite-material.d.ts +56 -0
- package/objects/README.md +3 -0
- package/objects/index.d.ts +12 -0
- package/objects/lib/bone/bone.d.ts +35 -0
- package/objects/lib/group/group.d.ts +35 -0
- package/objects/lib/instanced-mesh/instanced-mesh.d.ts +44 -0
- package/objects/lib/line/line.d.ts +41 -0
- package/objects/lib/line-loop/line-loop.d.ts +41 -0
- package/objects/lib/line-segments/line-segments.d.ts +41 -0
- package/objects/lib/lod/lod.d.ts +40 -0
- package/objects/lib/mesh/mesh.d.ts +41 -0
- package/objects/lib/points/points.d.ts +41 -0
- package/objects/lib/skeleton/skeleton.d.ts +16 -0
- package/objects/lib/skinned-mesh/skinned-mesh.d.ts +45 -0
- package/objects/lib/sprite/sprite.d.ts +38 -0
- package/package.json +93 -2
- package/primitives/README.md +3 -0
- package/primitives/index.d.ts +2 -0
- package/primitives/lib/object-primitive/object-primitive.d.ts +35 -0
- package/primitives/lib/primitive/primitive.d.ts +10 -0
- package/schematics/src/generators/init/generator.d.ts +1 -1
- package/schematics/src/generators/init/generator.js +4 -4
- package/schematics/src/generators/init/generator.js.map +1 -1
- package/stats/README.md +3 -0
- package/stats/index.d.ts +1 -0
- package/stats/lib/stats/stats.d.ts +16 -0
- package/textures/README.md +3 -0
- package/textures/index.d.ts +10 -0
- package/textures/lib/canvas-texture/canvas-texture.d.ts +8 -0
- package/textures/lib/compressed-array-texture/compressed-array-texture.d.ts +8 -0
- package/textures/lib/compressed-texture/compressed-texture.d.ts +8 -0
- package/textures/lib/cube-texture/cube-texture.d.ts +8 -0
- package/textures/lib/data-array-texture/data-array-texture.d.ts +8 -0
- package/textures/lib/data-texture/data-texture.d.ts +8 -0
- package/textures/lib/data3-dtexture/data3-dtexture.d.ts +8 -0
- package/textures/lib/depth-texture/depth-texture.d.ts +8 -0
- package/textures/lib/framebuffer-texture/framebuffer-texture.d.ts +8 -0
- package/textures/lib/video-texture/video-texture.d.ts +8 -0
- package/esm2020/lib/angular-three.module.mjs +0 -15
- package/lib/angular-three.module.d.ts +0 -7
|
@@ -0,0 +1,630 @@
|
|
|
1
|
+
import * as i1 from 'angular-three';
|
|
2
|
+
import { proxify, provideInstanceRef, NgtInstance, NGT_INSTANCE_INPUTS, NGT_INSTANCE_OUTPUTS, injectArgs } from 'angular-three';
|
|
3
|
+
import * as i0 from '@angular/core';
|
|
4
|
+
import { Component } from '@angular/core';
|
|
5
|
+
import * as THREE from 'three';
|
|
6
|
+
|
|
7
|
+
// GENERATED - AngularThree v1.0.0
|
|
8
|
+
class NgtBone extends THREE.Bone {
|
|
9
|
+
constructor() {
|
|
10
|
+
super();
|
|
11
|
+
return proxify(this);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
NgtBone.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBone, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
15
|
+
NgtBone.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtBone, isStandalone: true, selector: "ngt-bone", inputs: { name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtBone)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBone, decorators: [{
|
|
17
|
+
type: Component,
|
|
18
|
+
args: [{
|
|
19
|
+
selector: 'ngt-bone',
|
|
20
|
+
standalone: true,
|
|
21
|
+
template: '<ng-content></ng-content>',
|
|
22
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
23
|
+
providers: [provideInstanceRef(NgtBone)],
|
|
24
|
+
inputs: [...getInputs$b()],
|
|
25
|
+
}]
|
|
26
|
+
}], ctorParameters: function () { return []; } });
|
|
27
|
+
function getInputs$b() {
|
|
28
|
+
return [
|
|
29
|
+
'name',
|
|
30
|
+
'position',
|
|
31
|
+
'rotation',
|
|
32
|
+
'quaternion',
|
|
33
|
+
'scale',
|
|
34
|
+
'modelViewMatrix',
|
|
35
|
+
'normalMatrix',
|
|
36
|
+
'matrix',
|
|
37
|
+
'matrixWorld',
|
|
38
|
+
'matrixAutoUpdate',
|
|
39
|
+
'matrixWorldAutoUpdate',
|
|
40
|
+
'matrixWorldNeedsUpdate',
|
|
41
|
+
'layers',
|
|
42
|
+
'visible',
|
|
43
|
+
'castShadow',
|
|
44
|
+
'receiveShadow',
|
|
45
|
+
'frustumCulled',
|
|
46
|
+
'renderOrder',
|
|
47
|
+
'animations',
|
|
48
|
+
'userData',
|
|
49
|
+
'customDepthMaterial',
|
|
50
|
+
'customDistanceMaterial',
|
|
51
|
+
'onBeforeRender',
|
|
52
|
+
'onAfterRender',
|
|
53
|
+
];
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// GENERATED - AngularThree v1.0.0
|
|
57
|
+
class NgtGroup extends THREE.Group {
|
|
58
|
+
constructor() {
|
|
59
|
+
super();
|
|
60
|
+
return proxify(this);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
NgtGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtGroup, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
64
|
+
NgtGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtGroup, isStandalone: true, selector: "ngt-group", inputs: { name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtGroup)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
65
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtGroup, decorators: [{
|
|
66
|
+
type: Component,
|
|
67
|
+
args: [{
|
|
68
|
+
selector: 'ngt-group',
|
|
69
|
+
standalone: true,
|
|
70
|
+
template: '<ng-content></ng-content>',
|
|
71
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
72
|
+
providers: [provideInstanceRef(NgtGroup)],
|
|
73
|
+
inputs: [...getInputs$a()],
|
|
74
|
+
}]
|
|
75
|
+
}], ctorParameters: function () { return []; } });
|
|
76
|
+
function getInputs$a() {
|
|
77
|
+
return [
|
|
78
|
+
'name',
|
|
79
|
+
'position',
|
|
80
|
+
'rotation',
|
|
81
|
+
'quaternion',
|
|
82
|
+
'scale',
|
|
83
|
+
'modelViewMatrix',
|
|
84
|
+
'normalMatrix',
|
|
85
|
+
'matrix',
|
|
86
|
+
'matrixWorld',
|
|
87
|
+
'matrixAutoUpdate',
|
|
88
|
+
'matrixWorldAutoUpdate',
|
|
89
|
+
'matrixWorldNeedsUpdate',
|
|
90
|
+
'layers',
|
|
91
|
+
'visible',
|
|
92
|
+
'castShadow',
|
|
93
|
+
'receiveShadow',
|
|
94
|
+
'frustumCulled',
|
|
95
|
+
'renderOrder',
|
|
96
|
+
'animations',
|
|
97
|
+
'userData',
|
|
98
|
+
'customDepthMaterial',
|
|
99
|
+
'customDistanceMaterial',
|
|
100
|
+
'onBeforeRender',
|
|
101
|
+
'onAfterRender',
|
|
102
|
+
];
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// GENERATED - AngularThree v1.0.0
|
|
106
|
+
class NgtInstancedMesh extends THREE.InstancedMesh {
|
|
107
|
+
constructor() {
|
|
108
|
+
super(...(injectArgs({ optional: true }) || [undefined, undefined, 0]));
|
|
109
|
+
return proxify(this, {
|
|
110
|
+
created: (instance) => instance.instanceMatrix.setUsage(THREE.DynamicDrawUsage),
|
|
111
|
+
});
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
NgtInstancedMesh.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInstancedMesh, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
115
|
+
NgtInstancedMesh.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtInstancedMesh, isStandalone: true, selector: "ngt-instanced-mesh", inputs: { count: "count", instanceColor: "instanceColor", instanceMatrix: "instanceMatrix", geometry: "geometry", material: "material", morphTargetInfluences: "morphTargetInfluences", morphTargetDictionary: "morphTargetDictionary", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtInstancedMesh)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
116
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInstancedMesh, decorators: [{
|
|
117
|
+
type: Component,
|
|
118
|
+
args: [{
|
|
119
|
+
selector: 'ngt-instanced-mesh',
|
|
120
|
+
standalone: true,
|
|
121
|
+
template: '<ng-content></ng-content>',
|
|
122
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
123
|
+
providers: [provideInstanceRef(NgtInstancedMesh)],
|
|
124
|
+
inputs: [...getInputs$9()],
|
|
125
|
+
}]
|
|
126
|
+
}], ctorParameters: function () { return []; } });
|
|
127
|
+
function getInputs$9() {
|
|
128
|
+
return [
|
|
129
|
+
'count',
|
|
130
|
+
'instanceColor',
|
|
131
|
+
'instanceMatrix',
|
|
132
|
+
'geometry',
|
|
133
|
+
'material',
|
|
134
|
+
'morphTargetInfluences',
|
|
135
|
+
'morphTargetDictionary',
|
|
136
|
+
'name',
|
|
137
|
+
'position',
|
|
138
|
+
'rotation',
|
|
139
|
+
'quaternion',
|
|
140
|
+
'scale',
|
|
141
|
+
'modelViewMatrix',
|
|
142
|
+
'normalMatrix',
|
|
143
|
+
'matrix',
|
|
144
|
+
'matrixWorld',
|
|
145
|
+
'matrixAutoUpdate',
|
|
146
|
+
'matrixWorldAutoUpdate',
|
|
147
|
+
'matrixWorldNeedsUpdate',
|
|
148
|
+
'layers',
|
|
149
|
+
'visible',
|
|
150
|
+
'castShadow',
|
|
151
|
+
'receiveShadow',
|
|
152
|
+
'frustumCulled',
|
|
153
|
+
'renderOrder',
|
|
154
|
+
'animations',
|
|
155
|
+
'userData',
|
|
156
|
+
'customDepthMaterial',
|
|
157
|
+
'customDistanceMaterial',
|
|
158
|
+
'onBeforeRender',
|
|
159
|
+
'onAfterRender',
|
|
160
|
+
];
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
// GENERATED - AngularThree v1.0.0
|
|
164
|
+
class NgtLine extends THREE.Line {
|
|
165
|
+
constructor() {
|
|
166
|
+
super();
|
|
167
|
+
return proxify(this);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
NgtLine.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLine, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
171
|
+
NgtLine.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtLine, isStandalone: true, selector: "ngt-line", inputs: { geometry: "geometry", material: "material", morphTargetInfluences: "morphTargetInfluences", morphTargetDictionary: "morphTargetDictionary", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtLine)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
172
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLine, decorators: [{
|
|
173
|
+
type: Component,
|
|
174
|
+
args: [{
|
|
175
|
+
selector: 'ngt-line',
|
|
176
|
+
standalone: true,
|
|
177
|
+
template: '<ng-content></ng-content>',
|
|
178
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
179
|
+
providers: [provideInstanceRef(NgtLine)],
|
|
180
|
+
inputs: [...getInputs$8()],
|
|
181
|
+
}]
|
|
182
|
+
}], ctorParameters: function () { return []; } });
|
|
183
|
+
function getInputs$8() {
|
|
184
|
+
return [
|
|
185
|
+
'geometry',
|
|
186
|
+
'material',
|
|
187
|
+
'morphTargetInfluences',
|
|
188
|
+
'morphTargetDictionary',
|
|
189
|
+
'name',
|
|
190
|
+
'position',
|
|
191
|
+
'rotation',
|
|
192
|
+
'quaternion',
|
|
193
|
+
'scale',
|
|
194
|
+
'modelViewMatrix',
|
|
195
|
+
'normalMatrix',
|
|
196
|
+
'matrix',
|
|
197
|
+
'matrixWorld',
|
|
198
|
+
'matrixAutoUpdate',
|
|
199
|
+
'matrixWorldAutoUpdate',
|
|
200
|
+
'matrixWorldNeedsUpdate',
|
|
201
|
+
'layers',
|
|
202
|
+
'visible',
|
|
203
|
+
'castShadow',
|
|
204
|
+
'receiveShadow',
|
|
205
|
+
'frustumCulled',
|
|
206
|
+
'renderOrder',
|
|
207
|
+
'animations',
|
|
208
|
+
'userData',
|
|
209
|
+
'customDepthMaterial',
|
|
210
|
+
'customDistanceMaterial',
|
|
211
|
+
'onBeforeRender',
|
|
212
|
+
'onAfterRender',
|
|
213
|
+
];
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
// GENERATED - AngularThree v1.0.0
|
|
217
|
+
class NgtLineLoop extends THREE.LineLoop {
|
|
218
|
+
constructor() {
|
|
219
|
+
super();
|
|
220
|
+
return proxify(this);
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
NgtLineLoop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLineLoop, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
224
|
+
NgtLineLoop.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtLineLoop, isStandalone: true, selector: "ngt-line-loop", inputs: { geometry: "geometry", material: "material", morphTargetInfluences: "morphTargetInfluences", morphTargetDictionary: "morphTargetDictionary", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtLineLoop)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLineLoop, decorators: [{
|
|
226
|
+
type: Component,
|
|
227
|
+
args: [{
|
|
228
|
+
selector: 'ngt-line-loop',
|
|
229
|
+
standalone: true,
|
|
230
|
+
template: '<ng-content></ng-content>',
|
|
231
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
232
|
+
providers: [provideInstanceRef(NgtLineLoop)],
|
|
233
|
+
inputs: [...getInputs$7()],
|
|
234
|
+
}]
|
|
235
|
+
}], ctorParameters: function () { return []; } });
|
|
236
|
+
function getInputs$7() {
|
|
237
|
+
return [
|
|
238
|
+
'geometry',
|
|
239
|
+
'material',
|
|
240
|
+
'morphTargetInfluences',
|
|
241
|
+
'morphTargetDictionary',
|
|
242
|
+
'name',
|
|
243
|
+
'position',
|
|
244
|
+
'rotation',
|
|
245
|
+
'quaternion',
|
|
246
|
+
'scale',
|
|
247
|
+
'modelViewMatrix',
|
|
248
|
+
'normalMatrix',
|
|
249
|
+
'matrix',
|
|
250
|
+
'matrixWorld',
|
|
251
|
+
'matrixAutoUpdate',
|
|
252
|
+
'matrixWorldAutoUpdate',
|
|
253
|
+
'matrixWorldNeedsUpdate',
|
|
254
|
+
'layers',
|
|
255
|
+
'visible',
|
|
256
|
+
'castShadow',
|
|
257
|
+
'receiveShadow',
|
|
258
|
+
'frustumCulled',
|
|
259
|
+
'renderOrder',
|
|
260
|
+
'animations',
|
|
261
|
+
'userData',
|
|
262
|
+
'customDepthMaterial',
|
|
263
|
+
'customDistanceMaterial',
|
|
264
|
+
'onBeforeRender',
|
|
265
|
+
'onAfterRender',
|
|
266
|
+
];
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
// GENERATED - AngularThree v1.0.0
|
|
270
|
+
class NgtLineSegments extends THREE.LineSegments {
|
|
271
|
+
constructor() {
|
|
272
|
+
super();
|
|
273
|
+
return proxify(this);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
NgtLineSegments.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLineSegments, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
277
|
+
NgtLineSegments.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtLineSegments, isStandalone: true, selector: "ngt-line-segments", inputs: { geometry: "geometry", material: "material", morphTargetInfluences: "morphTargetInfluences", morphTargetDictionary: "morphTargetDictionary", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtLineSegments)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLineSegments, decorators: [{
|
|
279
|
+
type: Component,
|
|
280
|
+
args: [{
|
|
281
|
+
selector: 'ngt-line-segments',
|
|
282
|
+
standalone: true,
|
|
283
|
+
template: '<ng-content></ng-content>',
|
|
284
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
285
|
+
providers: [provideInstanceRef(NgtLineSegments)],
|
|
286
|
+
inputs: [...getInputs$6()],
|
|
287
|
+
}]
|
|
288
|
+
}], ctorParameters: function () { return []; } });
|
|
289
|
+
function getInputs$6() {
|
|
290
|
+
return [
|
|
291
|
+
'geometry',
|
|
292
|
+
'material',
|
|
293
|
+
'morphTargetInfluences',
|
|
294
|
+
'morphTargetDictionary',
|
|
295
|
+
'name',
|
|
296
|
+
'position',
|
|
297
|
+
'rotation',
|
|
298
|
+
'quaternion',
|
|
299
|
+
'scale',
|
|
300
|
+
'modelViewMatrix',
|
|
301
|
+
'normalMatrix',
|
|
302
|
+
'matrix',
|
|
303
|
+
'matrixWorld',
|
|
304
|
+
'matrixAutoUpdate',
|
|
305
|
+
'matrixWorldAutoUpdate',
|
|
306
|
+
'matrixWorldNeedsUpdate',
|
|
307
|
+
'layers',
|
|
308
|
+
'visible',
|
|
309
|
+
'castShadow',
|
|
310
|
+
'receiveShadow',
|
|
311
|
+
'frustumCulled',
|
|
312
|
+
'renderOrder',
|
|
313
|
+
'animations',
|
|
314
|
+
'userData',
|
|
315
|
+
'customDepthMaterial',
|
|
316
|
+
'customDistanceMaterial',
|
|
317
|
+
'onBeforeRender',
|
|
318
|
+
'onAfterRender',
|
|
319
|
+
];
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
// GENERATED - AngularThree v1.0.0
|
|
323
|
+
class NgtLOD extends THREE.LOD {
|
|
324
|
+
constructor() {
|
|
325
|
+
super();
|
|
326
|
+
return proxify(this);
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
NgtLOD.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLOD, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
330
|
+
NgtLOD.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtLOD, isStandalone: true, selector: "ngt-lod", inputs: { levels: "levels", autoUpdate: "autoUpdate", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtLOD)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
331
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLOD, decorators: [{
|
|
332
|
+
type: Component,
|
|
333
|
+
args: [{
|
|
334
|
+
selector: 'ngt-lod',
|
|
335
|
+
standalone: true,
|
|
336
|
+
template: '<ng-content></ng-content>',
|
|
337
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
338
|
+
providers: [provideInstanceRef(NgtLOD)],
|
|
339
|
+
inputs: [...getInputs$5()],
|
|
340
|
+
}]
|
|
341
|
+
}], ctorParameters: function () { return []; } });
|
|
342
|
+
function getInputs$5() {
|
|
343
|
+
return [
|
|
344
|
+
'levels',
|
|
345
|
+
'autoUpdate',
|
|
346
|
+
'name',
|
|
347
|
+
'position',
|
|
348
|
+
'rotation',
|
|
349
|
+
'quaternion',
|
|
350
|
+
'scale',
|
|
351
|
+
'modelViewMatrix',
|
|
352
|
+
'normalMatrix',
|
|
353
|
+
'matrix',
|
|
354
|
+
'matrixWorld',
|
|
355
|
+
'matrixAutoUpdate',
|
|
356
|
+
'matrixWorldAutoUpdate',
|
|
357
|
+
'matrixWorldNeedsUpdate',
|
|
358
|
+
'layers',
|
|
359
|
+
'visible',
|
|
360
|
+
'castShadow',
|
|
361
|
+
'receiveShadow',
|
|
362
|
+
'frustumCulled',
|
|
363
|
+
'renderOrder',
|
|
364
|
+
'animations',
|
|
365
|
+
'userData',
|
|
366
|
+
'customDepthMaterial',
|
|
367
|
+
'customDistanceMaterial',
|
|
368
|
+
'onBeforeRender',
|
|
369
|
+
'onAfterRender',
|
|
370
|
+
];
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
// GENERATED - AngularThree v1.0.0
|
|
374
|
+
class NgtMesh extends THREE.Mesh {
|
|
375
|
+
constructor() {
|
|
376
|
+
super();
|
|
377
|
+
return proxify(this);
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
NgtMesh.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMesh, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
381
|
+
NgtMesh.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMesh, isStandalone: true, selector: "ngt-mesh", inputs: { geometry: "geometry", material: "material", morphTargetInfluences: "morphTargetInfluences", morphTargetDictionary: "morphTargetDictionary", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtMesh)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
382
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMesh, decorators: [{
|
|
383
|
+
type: Component,
|
|
384
|
+
args: [{
|
|
385
|
+
selector: 'ngt-mesh',
|
|
386
|
+
standalone: true,
|
|
387
|
+
template: '<ng-content></ng-content>',
|
|
388
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
389
|
+
providers: [provideInstanceRef(NgtMesh)],
|
|
390
|
+
inputs: [...getInputs$4()],
|
|
391
|
+
}]
|
|
392
|
+
}], ctorParameters: function () { return []; } });
|
|
393
|
+
function getInputs$4() {
|
|
394
|
+
return [
|
|
395
|
+
'geometry',
|
|
396
|
+
'material',
|
|
397
|
+
'morphTargetInfluences',
|
|
398
|
+
'morphTargetDictionary',
|
|
399
|
+
'name',
|
|
400
|
+
'position',
|
|
401
|
+
'rotation',
|
|
402
|
+
'quaternion',
|
|
403
|
+
'scale',
|
|
404
|
+
'modelViewMatrix',
|
|
405
|
+
'normalMatrix',
|
|
406
|
+
'matrix',
|
|
407
|
+
'matrixWorld',
|
|
408
|
+
'matrixAutoUpdate',
|
|
409
|
+
'matrixWorldAutoUpdate',
|
|
410
|
+
'matrixWorldNeedsUpdate',
|
|
411
|
+
'layers',
|
|
412
|
+
'visible',
|
|
413
|
+
'castShadow',
|
|
414
|
+
'receiveShadow',
|
|
415
|
+
'frustumCulled',
|
|
416
|
+
'renderOrder',
|
|
417
|
+
'animations',
|
|
418
|
+
'userData',
|
|
419
|
+
'customDepthMaterial',
|
|
420
|
+
'customDistanceMaterial',
|
|
421
|
+
'onBeforeRender',
|
|
422
|
+
'onAfterRender',
|
|
423
|
+
];
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
// GENERATED - AngularThree v1.0.0
|
|
427
|
+
class NgtPoints extends THREE.Points {
|
|
428
|
+
constructor() {
|
|
429
|
+
super();
|
|
430
|
+
return proxify(this);
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
NgtPoints.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPoints, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
434
|
+
NgtPoints.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtPoints, isStandalone: true, selector: "ngt-points", inputs: { morphTargetInfluences: "morphTargetInfluences", morphTargetDictionary: "morphTargetDictionary", geometry: "geometry", material: "material", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtPoints)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPoints, decorators: [{
|
|
436
|
+
type: Component,
|
|
437
|
+
args: [{
|
|
438
|
+
selector: 'ngt-points',
|
|
439
|
+
standalone: true,
|
|
440
|
+
template: '<ng-content></ng-content>',
|
|
441
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
442
|
+
providers: [provideInstanceRef(NgtPoints)],
|
|
443
|
+
inputs: [...getInputs$3()],
|
|
444
|
+
}]
|
|
445
|
+
}], ctorParameters: function () { return []; } });
|
|
446
|
+
function getInputs$3() {
|
|
447
|
+
return [
|
|
448
|
+
'morphTargetInfluences',
|
|
449
|
+
'morphTargetDictionary',
|
|
450
|
+
'geometry',
|
|
451
|
+
'material',
|
|
452
|
+
'name',
|
|
453
|
+
'position',
|
|
454
|
+
'rotation',
|
|
455
|
+
'quaternion',
|
|
456
|
+
'scale',
|
|
457
|
+
'modelViewMatrix',
|
|
458
|
+
'normalMatrix',
|
|
459
|
+
'matrix',
|
|
460
|
+
'matrixWorld',
|
|
461
|
+
'matrixAutoUpdate',
|
|
462
|
+
'matrixWorldAutoUpdate',
|
|
463
|
+
'matrixWorldNeedsUpdate',
|
|
464
|
+
'layers',
|
|
465
|
+
'visible',
|
|
466
|
+
'castShadow',
|
|
467
|
+
'receiveShadow',
|
|
468
|
+
'frustumCulled',
|
|
469
|
+
'renderOrder',
|
|
470
|
+
'animations',
|
|
471
|
+
'userData',
|
|
472
|
+
'customDepthMaterial',
|
|
473
|
+
'customDistanceMaterial',
|
|
474
|
+
'onBeforeRender',
|
|
475
|
+
'onAfterRender',
|
|
476
|
+
];
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
// GENERATED - AngularThree v1.0.0
|
|
480
|
+
class NgtSkeleton extends THREE.Skeleton {
|
|
481
|
+
constructor() {
|
|
482
|
+
super(...injectArgs());
|
|
483
|
+
return proxify(this, {
|
|
484
|
+
attach: (parent, child) => {
|
|
485
|
+
if (!(parent.value instanceof THREE.SkinnedMesh)) {
|
|
486
|
+
console.error('<ngt-skeleton> can only be used as a child of <ngt-skinned-mesh>');
|
|
487
|
+
return;
|
|
488
|
+
}
|
|
489
|
+
parent.value.bind(child.value);
|
|
490
|
+
return () => {
|
|
491
|
+
child.value.dispose();
|
|
492
|
+
};
|
|
493
|
+
},
|
|
494
|
+
});
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
NgtSkeleton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSkeleton, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
498
|
+
NgtSkeleton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtSkeleton, isStandalone: true, selector: "ngt-skeleton", inputs: { uuid: "uuid", bones: "bones", boneInverses: "boneInverses", boneMatrices: "boneMatrices", boneTexture: "boneTexture", boneTextureSize: "boneTextureSize", frame: "frame" }, providers: [provideInstanceRef(NgtSkeleton)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSkeleton, decorators: [{
|
|
500
|
+
type: Component,
|
|
501
|
+
args: [{
|
|
502
|
+
selector: 'ngt-skeleton',
|
|
503
|
+
standalone: true,
|
|
504
|
+
template: '<ng-content></ng-content>',
|
|
505
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
506
|
+
providers: [provideInstanceRef(NgtSkeleton)],
|
|
507
|
+
inputs: [...getInputs$2()],
|
|
508
|
+
}]
|
|
509
|
+
}], ctorParameters: function () { return []; } });
|
|
510
|
+
function getInputs$2() {
|
|
511
|
+
return ['uuid', 'bones', 'boneInverses', 'boneMatrices', 'boneTexture', 'boneTextureSize', 'frame'];
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
// GENERATED - AngularThree v1.0.0
|
|
515
|
+
class NgtSkinnedMesh extends THREE.SkinnedMesh {
|
|
516
|
+
constructor() {
|
|
517
|
+
super();
|
|
518
|
+
return proxify(this);
|
|
519
|
+
}
|
|
520
|
+
}
|
|
521
|
+
NgtSkinnedMesh.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSkinnedMesh, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
522
|
+
NgtSkinnedMesh.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtSkinnedMesh, isStandalone: true, selector: "ngt-skinned-mesh", inputs: { bindMode: "bindMode", bindMatrix: "bindMatrix", bindMatrixInverse: "bindMatrixInverse", skeleton: "skeleton", geometry: "geometry", material: "material", morphTargetInfluences: "morphTargetInfluences", morphTargetDictionary: "morphTargetDictionary", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtSkinnedMesh)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSkinnedMesh, decorators: [{
|
|
524
|
+
type: Component,
|
|
525
|
+
args: [{
|
|
526
|
+
selector: 'ngt-skinned-mesh',
|
|
527
|
+
standalone: true,
|
|
528
|
+
template: '<ng-content></ng-content>',
|
|
529
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
530
|
+
providers: [provideInstanceRef(NgtSkinnedMesh)],
|
|
531
|
+
inputs: [...getInputs$1()],
|
|
532
|
+
}]
|
|
533
|
+
}], ctorParameters: function () { return []; } });
|
|
534
|
+
function getInputs$1() {
|
|
535
|
+
return [
|
|
536
|
+
'bindMode',
|
|
537
|
+
'bindMatrix',
|
|
538
|
+
'bindMatrixInverse',
|
|
539
|
+
'skeleton',
|
|
540
|
+
'geometry',
|
|
541
|
+
'material',
|
|
542
|
+
'morphTargetInfluences',
|
|
543
|
+
'morphTargetDictionary',
|
|
544
|
+
'name',
|
|
545
|
+
'position',
|
|
546
|
+
'rotation',
|
|
547
|
+
'quaternion',
|
|
548
|
+
'scale',
|
|
549
|
+
'modelViewMatrix',
|
|
550
|
+
'normalMatrix',
|
|
551
|
+
'matrix',
|
|
552
|
+
'matrixWorld',
|
|
553
|
+
'matrixAutoUpdate',
|
|
554
|
+
'matrixWorldAutoUpdate',
|
|
555
|
+
'matrixWorldNeedsUpdate',
|
|
556
|
+
'layers',
|
|
557
|
+
'visible',
|
|
558
|
+
'castShadow',
|
|
559
|
+
'receiveShadow',
|
|
560
|
+
'frustumCulled',
|
|
561
|
+
'renderOrder',
|
|
562
|
+
'animations',
|
|
563
|
+
'userData',
|
|
564
|
+
'customDepthMaterial',
|
|
565
|
+
'customDistanceMaterial',
|
|
566
|
+
'onBeforeRender',
|
|
567
|
+
'onAfterRender',
|
|
568
|
+
];
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
// GENERATED - AngularThree v1.0.0
|
|
572
|
+
class NgtSprite extends THREE.Sprite {
|
|
573
|
+
constructor() {
|
|
574
|
+
super();
|
|
575
|
+
return proxify(this);
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
NgtSprite.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSprite, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
579
|
+
NgtSprite.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtSprite, isStandalone: true, selector: "ngt-sprite", inputs: { geometry: "geometry", material: "material", center: "center", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtSprite)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
580
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSprite, decorators: [{
|
|
581
|
+
type: Component,
|
|
582
|
+
args: [{
|
|
583
|
+
selector: 'ngt-sprite',
|
|
584
|
+
standalone: true,
|
|
585
|
+
template: '<ng-content></ng-content>',
|
|
586
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
587
|
+
providers: [provideInstanceRef(NgtSprite)],
|
|
588
|
+
inputs: [...getInputs()],
|
|
589
|
+
}]
|
|
590
|
+
}], ctorParameters: function () { return []; } });
|
|
591
|
+
function getInputs() {
|
|
592
|
+
return [
|
|
593
|
+
'geometry',
|
|
594
|
+
'material',
|
|
595
|
+
'center',
|
|
596
|
+
'name',
|
|
597
|
+
'position',
|
|
598
|
+
'rotation',
|
|
599
|
+
'quaternion',
|
|
600
|
+
'scale',
|
|
601
|
+
'modelViewMatrix',
|
|
602
|
+
'normalMatrix',
|
|
603
|
+
'matrix',
|
|
604
|
+
'matrixWorld',
|
|
605
|
+
'matrixAutoUpdate',
|
|
606
|
+
'matrixWorldAutoUpdate',
|
|
607
|
+
'matrixWorldNeedsUpdate',
|
|
608
|
+
'layers',
|
|
609
|
+
'visible',
|
|
610
|
+
'castShadow',
|
|
611
|
+
'receiveShadow',
|
|
612
|
+
'frustumCulled',
|
|
613
|
+
'renderOrder',
|
|
614
|
+
'animations',
|
|
615
|
+
'userData',
|
|
616
|
+
'customDepthMaterial',
|
|
617
|
+
'customDistanceMaterial',
|
|
618
|
+
'onBeforeRender',
|
|
619
|
+
'onAfterRender',
|
|
620
|
+
];
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
// GENERATED - AngularThree v1.0.0
|
|
624
|
+
|
|
625
|
+
/**
|
|
626
|
+
* Generated bundle index. Do not edit.
|
|
627
|
+
*/
|
|
628
|
+
|
|
629
|
+
export { NgtBone, NgtGroup, NgtInstancedMesh, NgtLOD, NgtLine, NgtLineLoop, NgtLineSegments, NgtMesh, NgtPoints, NgtSkeleton, NgtSkinnedMesh, NgtSprite };
|
|
630
|
+
//# sourceMappingURL=angular-three-objects.mjs.map
|