angular-three 0.0.7 → 1.0.0-beta.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/esm2020/angular-three.mjs +1 -1
- package/esm2020/index.mjs +2 -35
- package/esm2020/lib/canvas.mjs +141 -128
- package/esm2020/lib/di/catalogue.mjs +7 -0
- package/esm2020/lib/directives/args.mjs +37 -17
- package/esm2020/lib/directives/repeat.mjs +5 -8
- package/esm2020/lib/events.mjs +341 -52
- package/esm2020/lib/loader.mjs +55 -0
- package/esm2020/lib/loop.mjs +137 -0
- package/esm2020/lib/renderer/di.mjs +3 -0
- package/esm2020/lib/renderer/enums.mjs +2 -0
- package/esm2020/lib/renderer/provider.mjs +19 -0
- package/esm2020/lib/renderer/renderer.mjs +293 -0
- package/esm2020/lib/renderer/state.mjs +350 -0
- package/esm2020/lib/renderer/utils.mjs +177 -0
- package/esm2020/lib/stores/rx-store.mjs +99 -0
- package/esm2020/lib/stores/store.mjs +190 -239
- package/esm2020/lib/types.mjs +1 -1
- package/esm2020/lib/utils/apply-props.mjs +37 -80
- package/esm2020/lib/utils/attach.mjs +29 -0
- package/esm2020/lib/utils/instance.mjs +43 -28
- package/esm2020/lib/utils/is.mjs +7 -11
- package/esm2020/lib/utils/make.mjs +30 -10
- package/esm2020/lib/utils/update.mjs +37 -0
- package/esm2020/lib/web/events.mjs +68 -0
- package/fesm2015/angular-three.mjs +2053 -2046
- package/fesm2015/angular-three.mjs.map +1 -1
- package/fesm2020/angular-three.mjs +2003 -1990
- package/fesm2020/angular-three.mjs.map +1 -1
- package/index.d.ts +1 -34
- package/lib/canvas.d.ts +29 -28
- package/lib/di/catalogue.d.ts +3 -0
- package/lib/directives/args.d.ts +8 -12
- package/lib/events.d.ts +7 -2
- package/lib/loader.d.ts +15 -0
- package/lib/{utils/loop.d.ts → loop.d.ts} +7 -6
- package/lib/renderer/di.d.ts +2 -0
- package/lib/renderer/enums.d.ts +25 -0
- package/lib/renderer/provider.d.ts +25 -0
- package/lib/renderer/renderer.d.ts +49 -0
- package/lib/renderer/state.d.ts +59 -0
- package/lib/renderer/utils.d.ts +20 -0
- package/lib/stores/rx-store.d.ts +17 -0
- package/lib/stores/store.d.ts +6 -23
- package/lib/types.d.ts +182 -191
- package/lib/utils/apply-props.d.ts +2 -6
- package/lib/utils/attach.d.ts +3 -0
- package/lib/utils/instance.d.ts +3 -3
- package/lib/utils/is.d.ts +6 -10
- package/lib/utils/make.d.ts +5 -2
- package/lib/utils/update.d.ts +4 -0
- package/lib/web/events.d.ts +4 -0
- package/package.json +30 -99
- package/attributes/README.md +0 -3
- package/attributes/index.d.ts +0 -22
- package/attributes/lib/buffer-attribute/buffer-attribute.d.ts +0 -8
- package/attributes/lib/color-attribute/color-attribute.d.ts +0 -8
- package/attributes/lib/common.d.ts +0 -1
- package/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.d.ts +0 -8
- package/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.d.ts +0 -8
- package/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.d.ts +0 -8
- package/attributes/lib/fog-attribute/fog-attribute.d.ts +0 -8
- package/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.d.ts +0 -8
- package/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.d.ts +0 -8
- package/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.d.ts +0 -8
- package/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.d.ts +0 -8
- package/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.d.ts +0 -8
- package/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.d.ts +0 -8
- package/attributes/lib/matrix3-attribute/matrix3-attribute.d.ts +0 -8
- package/attributes/lib/matrix4-attribute/matrix4-attribute.d.ts +0 -8
- package/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.d.ts +0 -8
- package/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.d.ts +0 -8
- package/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.d.ts +0 -8
- package/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.d.ts +0 -8
- package/attributes/lib/value-attribute/value-attribute.d.ts +0 -8
- package/attributes/lib/vector2-attribute/vector2-attribute.d.ts +0 -8
- package/attributes/lib/vector3-attribute/vector3-attribute.d.ts +0 -8
- package/attributes/lib/vector4-attribute/vector4-attribute.d.ts +0 -8
- package/audios/README.md +0 -3
- package/audios/index.d.ts +0 -3
- package/audios/lib/audio/audio.d.ts +0 -49
- package/audios/lib/audio-listener/audio-listener.d.ts +0 -35
- package/audios/lib/common.d.ts +0 -3
- package/audios/lib/positional-audio/positional-audio.d.ts +0 -49
- package/cameras/README.md +0 -3
- package/cameras/index.d.ts +0 -5
- package/cameras/lib/array-camera/array-camera.d.ts +0 -56
- package/cameras/lib/common.d.ts +0 -3
- package/cameras/lib/cube-camera/cube-camera.d.ts +0 -36
- package/cameras/lib/orthographic-camera/orthographic-camera.d.ts +0 -54
- package/cameras/lib/perspective-camera/perspective-camera.d.ts +0 -55
- package/cameras/lib/stereo-camera/stereo-camera.d.ts +0 -42
- package/esm2020/attributes/angular-three-attributes.mjs +0 -5
- package/esm2020/attributes/index.mjs +0 -24
- package/esm2020/attributes/lib/buffer-attribute/buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/color-attribute/color-attribute.mjs +0 -26
- package/esm2020/attributes/lib/common.mjs +0 -13
- package/esm2020/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/fog-attribute/fog-attribute.mjs +0 -26
- package/esm2020/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.mjs +0 -26
- package/esm2020/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.mjs +0 -30
- package/esm2020/attributes/lib/matrix3-attribute/matrix3-attribute.mjs +0 -26
- package/esm2020/attributes/lib/matrix4-attribute/matrix4-attribute.mjs +0 -26
- package/esm2020/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/value-attribute/value-attribute.mjs +0 -28
- package/esm2020/attributes/lib/vector2-attribute/vector2-attribute.mjs +0 -26
- package/esm2020/attributes/lib/vector3-attribute/vector3-attribute.mjs +0 -26
- package/esm2020/attributes/lib/vector4-attribute/vector4-attribute.mjs +0 -26
- package/esm2020/audios/angular-three-audios.mjs +0 -5
- package/esm2020/audios/index.mjs +0 -5
- package/esm2020/audios/lib/audio/audio.mjs +0 -45
- package/esm2020/audios/lib/audio-listener/audio-listener.mjs +0 -38
- package/esm2020/audios/lib/common.mjs +0 -54
- package/esm2020/audios/lib/positional-audio/positional-audio.mjs +0 -45
- package/esm2020/cameras/angular-three-cameras.mjs +0 -5
- package/esm2020/cameras/index.mjs +0 -7
- package/esm2020/cameras/lib/array-camera/array-camera.mjs +0 -44
- package/esm2020/cameras/lib/common.mjs +0 -54
- package/esm2020/cameras/lib/cube-camera/cube-camera.mjs +0 -30
- package/esm2020/cameras/lib/orthographic-camera/orthographic-camera.mjs +0 -42
- package/esm2020/cameras/lib/perspective-camera/perspective-camera.mjs +0 -43
- package/esm2020/cameras/lib/stereo-camera/stereo-camera.mjs +0 -38
- package/esm2020/geometries/angular-three-geometries.mjs +0 -5
- package/esm2020/geometries/index.mjs +0 -25
- package/esm2020/geometries/lib/box-geometry/box-geometry.mjs +0 -26
- package/esm2020/geometries/lib/buffer-geometry/buffer-geometry.mjs +0 -26
- package/esm2020/geometries/lib/capsule-geometry/capsule-geometry.mjs +0 -26
- package/esm2020/geometries/lib/circle-geometry/circle-geometry.mjs +0 -26
- package/esm2020/geometries/lib/common.mjs +0 -13
- package/esm2020/geometries/lib/cone-geometry/cone-geometry.mjs +0 -26
- package/esm2020/geometries/lib/cylinder-geometry/cylinder-geometry.mjs +0 -26
- package/esm2020/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.mjs +0 -26
- package/esm2020/geometries/lib/edges-geometry/edges-geometry.mjs +0 -26
- package/esm2020/geometries/lib/extrude-geometry/extrude-geometry.mjs +0 -26
- package/esm2020/geometries/lib/icosahedron-geometry/icosahedron-geometry.mjs +0 -26
- package/esm2020/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.mjs +0 -26
- package/esm2020/geometries/lib/lathe-geometry/lathe-geometry.mjs +0 -26
- package/esm2020/geometries/lib/octahedron-geometry/octahedron-geometry.mjs +0 -26
- package/esm2020/geometries/lib/plane-geometry/plane-geometry.mjs +0 -26
- package/esm2020/geometries/lib/polyhedron-geometry/polyhedron-geometry.mjs +0 -26
- package/esm2020/geometries/lib/ring-geometry/ring-geometry.mjs +0 -26
- package/esm2020/geometries/lib/shape-geometry/shape-geometry.mjs +0 -26
- package/esm2020/geometries/lib/sphere-geometry/sphere-geometry.mjs +0 -26
- package/esm2020/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.mjs +0 -26
- package/esm2020/geometries/lib/torus-geometry/torus-geometry.mjs +0 -26
- package/esm2020/geometries/lib/torus-knot-geometry/torus-knot-geometry.mjs +0 -26
- package/esm2020/geometries/lib/tube-geometry/tube-geometry.mjs +0 -26
- package/esm2020/geometries/lib/wireframe-geometry/wireframe-geometry.mjs +0 -26
- package/esm2020/helpers/angular-three-helpers.mjs +0 -5
- package/esm2020/helpers/index.mjs +0 -15
- package/esm2020/helpers/lib/arrow-helper/arrow-helper.mjs +0 -26
- package/esm2020/helpers/lib/axes-helper/axes-helper.mjs +0 -26
- package/esm2020/helpers/lib/box-helper/box-helper.mjs +0 -36
- package/esm2020/helpers/lib/box3-helper/box3-helper.mjs +0 -36
- package/esm2020/helpers/lib/camera-helper/camera-helper.mjs +0 -36
- package/esm2020/helpers/lib/common.mjs +0 -13
- package/esm2020/helpers/lib/directional-light-helper/directional-light-helper.mjs +0 -36
- package/esm2020/helpers/lib/grid-helper/grid-helper.mjs +0 -26
- package/esm2020/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.mjs +0 -36
- package/esm2020/helpers/lib/plane-helper/plane-helper.mjs +0 -36
- package/esm2020/helpers/lib/point-light-helper/point-light-helper.mjs +0 -36
- package/esm2020/helpers/lib/polar-grid-helper/polar-grid-helper.mjs +0 -26
- package/esm2020/helpers/lib/skeleton-helper/skeleton-helper.mjs +0 -36
- package/esm2020/helpers/lib/spot-light-helper/spot-light-helper.mjs +0 -36
- package/esm2020/lib/di/resize.mjs +0 -19
- package/esm2020/lib/di/window.mjs +0 -13
- package/esm2020/lib/directives/cursor.mjs +0 -35
- package/esm2020/lib/instance.mjs +0 -368
- package/esm2020/lib/pipes/math.mjs +0 -15
- package/esm2020/lib/pipes/pi.mjs +0 -14
- package/esm2020/lib/pipes/radian.mjs +0 -14
- package/esm2020/lib/pipes/side.mjs +0 -22
- package/esm2020/lib/ref.mjs +0 -15
- package/esm2020/lib/services/loader.mjs +0 -45
- package/esm2020/lib/services/resize.mjs +0 -127
- package/esm2020/lib/stores/component-store.mjs +0 -137
- package/esm2020/lib/utils/build-graph.mjs +0 -15
- package/esm2020/lib/utils/camera.mjs +0 -28
- package/esm2020/lib/utils/capitalize.mjs +0 -4
- package/esm2020/lib/utils/check-update.mjs +0 -22
- package/esm2020/lib/utils/events.mjs +0 -353
- package/esm2020/lib/utils/get-instance-local-state.mjs +0 -6
- package/esm2020/lib/utils/inject.mjs +0 -18
- package/esm2020/lib/utils/loop.mjs +0 -139
- package/esm2020/lib/utils/mutate.mjs +0 -24
- package/esm2020/lib/utils/proxy.mjs +0 -99
- package/esm2020/lib/utils/renderer.mjs +0 -15
- package/esm2020/lights/angular-three-lights.mjs +0 -5
- package/esm2020/lights/index.mjs +0 -11
- package/esm2020/lights/lib/ambient-light/ambient-light.mjs +0 -30
- package/esm2020/lights/lib/ambient-light-probe/ambient-light-probe.mjs +0 -30
- package/esm2020/lights/lib/common.mjs +0 -54
- package/esm2020/lights/lib/directional-light/directional-light.mjs +0 -30
- package/esm2020/lights/lib/hemisphere-light/hemisphere-light.mjs +0 -30
- package/esm2020/lights/lib/hemisphere-light-probe/hemisphere-light-probe.mjs +0 -30
- package/esm2020/lights/lib/light-probe/light-probe.mjs +0 -30
- package/esm2020/lights/lib/point-light/point-light.mjs +0 -30
- package/esm2020/lights/lib/rect-area-light/rect-area-light.mjs +0 -30
- package/esm2020/lights/lib/spot-light/spot-light.mjs +0 -42
- package/esm2020/materials/angular-three-materials.mjs +0 -5
- package/esm2020/materials/index.mjs +0 -19
- package/esm2020/materials/lib/common.mjs +0 -13
- package/esm2020/materials/lib/line-basic-material/line-basic-material.mjs +0 -77
- package/esm2020/materials/lib/line-dashed-material/line-dashed-material.mjs +0 -80
- package/esm2020/materials/lib/mesh-basic-material/mesh-basic-material.mjs +0 -89
- package/esm2020/materials/lib/mesh-depth-material/mesh-depth-material.mjs +0 -80
- package/esm2020/materials/lib/mesh-distance-material/mesh-distance-material.mjs +0 -80
- package/esm2020/materials/lib/mesh-lambert-material/mesh-lambert-material.mjs +0 -100
- package/esm2020/materials/lib/mesh-matcap-material/mesh-matcap-material.mjs +0 -86
- package/esm2020/materials/lib/mesh-normal-material/mesh-normal-material.mjs +0 -83
- package/esm2020/materials/lib/mesh-phong-material/mesh-phong-material.mjs +0 -103
- package/esm2020/materials/lib/mesh-physical-material/mesh-physical-material.mjs +0 -119
- package/esm2020/materials/lib/mesh-standard-material/mesh-standard-material.mjs +0 -100
- package/esm2020/materials/lib/mesh-toon-material/mesh-toon-material.mjs +0 -96
- package/esm2020/materials/lib/points-material/points-material.mjs +0 -78
- package/esm2020/materials/lib/raw-shader-material/raw-shader-material.mjs +0 -83
- package/esm2020/materials/lib/shader-material/shader-material.mjs +0 -83
- package/esm2020/materials/lib/shadow-material/shadow-material.mjs +0 -74
- package/esm2020/materials/lib/sprite-material/sprite-material.mjs +0 -78
- package/esm2020/objects/angular-three-objects.mjs +0 -5
- package/esm2020/objects/index.mjs +0 -14
- package/esm2020/objects/lib/bone/bone.mjs +0 -27
- package/esm2020/objects/lib/common.mjs +0 -54
- package/esm2020/objects/lib/group/group.mjs +0 -27
- package/esm2020/objects/lib/instanced-mesh/instanced-mesh.mjs +0 -40
- package/esm2020/objects/lib/line/line.mjs +0 -30
- package/esm2020/objects/lib/line-loop/line-loop.mjs +0 -30
- package/esm2020/objects/lib/line-segments/line-segments.mjs +0 -30
- package/esm2020/objects/lib/lod/lod.mjs +0 -30
- package/esm2020/objects/lib/mesh/mesh.mjs +0 -30
- package/esm2020/objects/lib/points/points.mjs +0 -30
- package/esm2020/objects/lib/skeleton/skeleton.mjs +0 -41
- package/esm2020/objects/lib/skinned-mesh/skinned-mesh.mjs +0 -39
- package/esm2020/objects/lib/sprite/sprite.mjs +0 -30
- package/esm2020/primitives/angular-three-primitives.mjs +0 -5
- package/esm2020/primitives/index.mjs +0 -3
- package/esm2020/primitives/lib/common.mjs +0 -54
- package/esm2020/primitives/lib/object-primitive/object-primitive.mjs +0 -27
- package/esm2020/primitives/lib/primitive/primitive.mjs +0 -38
- package/esm2020/stats/angular-three-stats.mjs +0 -5
- package/esm2020/stats/index.mjs +0 -2
- package/esm2020/stats/lib/stats/stats.mjs +0 -54
- package/esm2020/textures/angular-three-textures.mjs +0 -5
- package/esm2020/textures/index.mjs +0 -12
- package/esm2020/textures/lib/canvas-texture/canvas-texture.mjs +0 -26
- package/esm2020/textures/lib/common.mjs +0 -13
- package/esm2020/textures/lib/compressed-array-texture/compressed-array-texture.mjs +0 -26
- package/esm2020/textures/lib/compressed-texture/compressed-texture.mjs +0 -26
- package/esm2020/textures/lib/cube-texture/cube-texture.mjs +0 -26
- package/esm2020/textures/lib/data-array-texture/data-array-texture.mjs +0 -26
- package/esm2020/textures/lib/data-texture/data-texture.mjs +0 -26
- package/esm2020/textures/lib/data3-dtexture/data3-dtexture.mjs +0 -26
- package/esm2020/textures/lib/depth-texture/depth-texture.mjs +0 -26
- package/esm2020/textures/lib/framebuffer-texture/framebuffer-texture.mjs +0 -26
- package/esm2020/textures/lib/video-texture/video-texture.mjs +0 -26
- package/fesm2015/angular-three-attributes.mjs +0 -475
- package/fesm2015/angular-three-attributes.mjs.map +0 -1
- package/fesm2015/angular-three-audios.mjs +0 -179
- package/fesm2015/angular-three-audios.mjs.map +0 -1
- package/fesm2015/angular-three-cameras.mjs +0 -236
- package/fesm2015/angular-three-cameras.mjs.map +0 -1
- package/fesm2015/angular-three-geometries.mjs +0 -488
- package/fesm2015/angular-three-geometries.mjs.map +0 -1
- package/fesm2015/angular-three-helpers.mjs +0 -378
- package/fesm2015/angular-three-helpers.mjs.map +0 -1
- package/fesm2015/angular-three-lights.mjs +0 -297
- package/fesm2015/angular-three-lights.mjs.map +0 -1
- package/fesm2015/angular-three-materials.mjs +0 -1415
- package/fesm2015/angular-three-materials.mjs.map +0 -1
- package/fesm2015/angular-three-objects.mjs +0 -381
- package/fesm2015/angular-three-objects.mjs.map +0 -1
- package/fesm2015/angular-three-primitives.mjs +0 -120
- package/fesm2015/angular-three-primitives.mjs.map +0 -1
- package/fesm2015/angular-three-stats.mjs +0 -62
- package/fesm2015/angular-three-stats.mjs.map +0 -1
- package/fesm2015/angular-three-textures.mjs +0 -228
- package/fesm2015/angular-three-textures.mjs.map +0 -1
- package/fesm2020/angular-three-attributes.mjs +0 -475
- package/fesm2020/angular-three-attributes.mjs.map +0 -1
- package/fesm2020/angular-three-audios.mjs +0 -179
- package/fesm2020/angular-three-audios.mjs.map +0 -1
- package/fesm2020/angular-three-cameras.mjs +0 -236
- package/fesm2020/angular-three-cameras.mjs.map +0 -1
- package/fesm2020/angular-three-geometries.mjs +0 -488
- package/fesm2020/angular-three-geometries.mjs.map +0 -1
- package/fesm2020/angular-three-helpers.mjs +0 -378
- package/fesm2020/angular-three-helpers.mjs.map +0 -1
- package/fesm2020/angular-three-lights.mjs +0 -297
- package/fesm2020/angular-three-lights.mjs.map +0 -1
- package/fesm2020/angular-three-materials.mjs +0 -1415
- package/fesm2020/angular-three-materials.mjs.map +0 -1
- package/fesm2020/angular-three-objects.mjs +0 -381
- package/fesm2020/angular-three-objects.mjs.map +0 -1
- package/fesm2020/angular-three-primitives.mjs +0 -120
- package/fesm2020/angular-three-primitives.mjs.map +0 -1
- package/fesm2020/angular-three-stats.mjs +0 -62
- package/fesm2020/angular-three-stats.mjs.map +0 -1
- package/fesm2020/angular-three-textures.mjs +0 -228
- package/fesm2020/angular-three-textures.mjs.map +0 -1
- package/geometries/README.md +0 -3
- package/geometries/index.d.ts +0 -23
- package/geometries/lib/box-geometry/box-geometry.d.ts +0 -8
- package/geometries/lib/buffer-geometry/buffer-geometry.d.ts +0 -8
- package/geometries/lib/capsule-geometry/capsule-geometry.d.ts +0 -8
- package/geometries/lib/circle-geometry/circle-geometry.d.ts +0 -8
- package/geometries/lib/common.d.ts +0 -1
- package/geometries/lib/cone-geometry/cone-geometry.d.ts +0 -8
- package/geometries/lib/cylinder-geometry/cylinder-geometry.d.ts +0 -8
- package/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.d.ts +0 -8
- package/geometries/lib/edges-geometry/edges-geometry.d.ts +0 -8
- package/geometries/lib/extrude-geometry/extrude-geometry.d.ts +0 -8
- package/geometries/lib/icosahedron-geometry/icosahedron-geometry.d.ts +0 -8
- package/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.d.ts +0 -8
- package/geometries/lib/lathe-geometry/lathe-geometry.d.ts +0 -8
- package/geometries/lib/octahedron-geometry/octahedron-geometry.d.ts +0 -8
- package/geometries/lib/plane-geometry/plane-geometry.d.ts +0 -8
- package/geometries/lib/polyhedron-geometry/polyhedron-geometry.d.ts +0 -8
- package/geometries/lib/ring-geometry/ring-geometry.d.ts +0 -8
- package/geometries/lib/shape-geometry/shape-geometry.d.ts +0 -8
- package/geometries/lib/sphere-geometry/sphere-geometry.d.ts +0 -8
- package/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.d.ts +0 -8
- package/geometries/lib/torus-geometry/torus-geometry.d.ts +0 -8
- package/geometries/lib/torus-knot-geometry/torus-knot-geometry.d.ts +0 -8
- package/geometries/lib/tube-geometry/tube-geometry.d.ts +0 -8
- package/geometries/lib/wireframe-geometry/wireframe-geometry.d.ts +0 -8
- package/helpers/README.md +0 -3
- package/helpers/index.d.ts +0 -13
- package/helpers/lib/arrow-helper/arrow-helper.d.ts +0 -8
- package/helpers/lib/axes-helper/axes-helper.d.ts +0 -8
- package/helpers/lib/box-helper/box-helper.d.ts +0 -8
- package/helpers/lib/box3-helper/box3-helper.d.ts +0 -8
- package/helpers/lib/camera-helper/camera-helper.d.ts +0 -8
- package/helpers/lib/common.d.ts +0 -1
- package/helpers/lib/directional-light-helper/directional-light-helper.d.ts +0 -8
- package/helpers/lib/grid-helper/grid-helper.d.ts +0 -8
- package/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.d.ts +0 -8
- package/helpers/lib/plane-helper/plane-helper.d.ts +0 -8
- package/helpers/lib/point-light-helper/point-light-helper.d.ts +0 -8
- package/helpers/lib/polar-grid-helper/polar-grid-helper.d.ts +0 -8
- package/helpers/lib/skeleton-helper/skeleton-helper.d.ts +0 -8
- package/helpers/lib/spot-light-helper/spot-light-helper.d.ts +0 -8
- package/lib/di/resize.d.ts +0 -12
- package/lib/di/window.d.ts +0 -1
- package/lib/directives/cursor.d.ts +0 -7
- package/lib/instance.d.ts +0 -81
- package/lib/pipes/math.d.ts +0 -7
- package/lib/pipes/pi.d.ts +0 -7
- package/lib/pipes/radian.d.ts +0 -7
- package/lib/pipes/side.d.ts +0 -8
- package/lib/ref.d.ts +0 -5
- package/lib/services/loader.d.ts +0 -11
- package/lib/services/resize.d.ts +0 -19
- package/lib/stores/component-store.d.ts +0 -69
- package/lib/utils/build-graph.d.ts +0 -3
- package/lib/utils/camera.d.ts +0 -4
- package/lib/utils/capitalize.d.ts +0 -1
- package/lib/utils/check-update.d.ts +0 -2
- package/lib/utils/events.d.ts +0 -6
- package/lib/utils/get-instance-local-state.d.ts +0 -2
- package/lib/utils/inject.d.ts +0 -9
- package/lib/utils/mutate.d.ts +0 -2
- package/lib/utils/proxy.d.ts +0 -7
- package/lib/utils/renderer.d.ts +0 -3
- package/lights/README.md +0 -3
- package/lights/index.d.ts +0 -9
- package/lights/lib/ambient-light/ambient-light.d.ts +0 -39
- package/lights/lib/ambient-light-probe/ambient-light-probe.d.ts +0 -40
- package/lights/lib/common.d.ts +0 -3
- package/lights/lib/directional-light/directional-light.d.ts +0 -40
- package/lights/lib/hemisphere-light/hemisphere-light.d.ts +0 -41
- package/lights/lib/hemisphere-light-probe/hemisphere-light-probe.d.ts +0 -42
- package/lights/lib/light-probe/light-probe.d.ts +0 -40
- package/lights/lib/point-light/point-light.d.ts +0 -42
- package/lights/lib/rect-area-light/rect-area-light.d.ts +0 -42
- package/lights/lib/spot-light/spot-light.d.ts +0 -45
- package/materials/README.md +0 -3
- package/materials/index.d.ts +0 -17
- package/materials/lib/common.d.ts +0 -1
- package/materials/lib/line-basic-material/line-basic-material.d.ts +0 -55
- package/materials/lib/line-dashed-material/line-dashed-material.d.ts +0 -58
- package/materials/lib/mesh-basic-material/mesh-basic-material.d.ts +0 -67
- package/materials/lib/mesh-depth-material/mesh-depth-material.d.ts +0 -58
- package/materials/lib/mesh-distance-material/mesh-distance-material.d.ts +0 -58
- package/materials/lib/mesh-lambert-material/mesh-lambert-material.d.ts +0 -78
- package/materials/lib/mesh-matcap-material/mesh-matcap-material.d.ts +0 -64
- package/materials/lib/mesh-normal-material/mesh-normal-material.d.ts +0 -61
- package/materials/lib/mesh-phong-material/mesh-phong-material.d.ts +0 -81
- package/materials/lib/mesh-physical-material/mesh-physical-material.d.ts +0 -97
- package/materials/lib/mesh-standard-material/mesh-standard-material.d.ts +0 -78
- package/materials/lib/mesh-toon-material/mesh-toon-material.d.ts +0 -74
- package/materials/lib/points-material/points-material.d.ts +0 -56
- package/materials/lib/raw-shader-material/raw-shader-material.d.ts +0 -68
- package/materials/lib/shader-material/shader-material.d.ts +0 -68
- package/materials/lib/shadow-material/shadow-material.d.ts +0 -52
- package/materials/lib/sprite-material/sprite-material.d.ts +0 -56
- package/objects/README.md +0 -3
- package/objects/index.d.ts +0 -12
- package/objects/lib/bone/bone.d.ts +0 -35
- package/objects/lib/common.d.ts +0 -3
- package/objects/lib/group/group.d.ts +0 -35
- package/objects/lib/instanced-mesh/instanced-mesh.d.ts +0 -44
- package/objects/lib/line/line.d.ts +0 -41
- package/objects/lib/line-loop/line-loop.d.ts +0 -41
- package/objects/lib/line-segments/line-segments.d.ts +0 -41
- package/objects/lib/lod/lod.d.ts +0 -40
- package/objects/lib/mesh/mesh.d.ts +0 -41
- package/objects/lib/points/points.d.ts +0 -41
- package/objects/lib/skeleton/skeleton.d.ts +0 -16
- package/objects/lib/skinned-mesh/skinned-mesh.d.ts +0 -45
- package/objects/lib/sprite/sprite.d.ts +0 -38
- package/primitives/README.md +0 -3
- package/primitives/index.d.ts +0 -2
- package/primitives/lib/common.d.ts +0 -3
- package/primitives/lib/object-primitive/object-primitive.d.ts +0 -35
- package/primitives/lib/primitive/primitive.d.ts +0 -10
- package/schematics/README.md +0 -11
- package/stats/README.md +0 -3
- package/stats/index.d.ts +0 -1
- package/stats/lib/stats/stats.d.ts +0 -16
- package/textures/README.md +0 -3
- package/textures/index.d.ts +0 -10
- package/textures/lib/canvas-texture/canvas-texture.d.ts +0 -8
- package/textures/lib/common.d.ts +0 -1
- package/textures/lib/compressed-array-texture/compressed-array-texture.d.ts +0 -8
- package/textures/lib/compressed-texture/compressed-texture.d.ts +0 -8
- package/textures/lib/cube-texture/cube-texture.d.ts +0 -8
- package/textures/lib/data-array-texture/data-array-texture.d.ts +0 -8
- package/textures/lib/data-texture/data-texture.d.ts +0 -8
- package/textures/lib/data3-dtexture/data3-dtexture.d.ts +0 -8
- package/textures/lib/depth-texture/depth-texture.d.ts +0 -8
- package/textures/lib/framebuffer-texture/framebuffer-texture.d.ts +0 -8
- package/textures/lib/video-texture/video-texture.d.ts +0 -8
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
import * as THREE from 'three';
|
|
2
|
-
import * as i0 from '@angular/core';
|
|
3
|
-
import { Component, Input } from '@angular/core';
|
|
4
|
-
import * as i1 from 'angular-three';
|
|
5
|
-
import { injectArgs, proxify, provideInstanceRef, NgtInstance, NgtComponentStore } from 'angular-three';
|
|
6
|
-
import { tap } from 'rxjs';
|
|
7
|
-
|
|
8
|
-
// GENERATED - AngularThree v1.0.0
|
|
9
|
-
const NGT_INSTANCE_INPUTS = [
|
|
10
|
-
'ref',
|
|
11
|
-
'attach',
|
|
12
|
-
'skipWrapper',
|
|
13
|
-
'skipInit',
|
|
14
|
-
'noAttach',
|
|
15
|
-
'beforeRender',
|
|
16
|
-
'priority',
|
|
17
|
-
'updateCallback',
|
|
18
|
-
'readyCallback',
|
|
19
|
-
];
|
|
20
|
-
const NGT_INSTANCE_OUTPUTS = [
|
|
21
|
-
'click',
|
|
22
|
-
'contextmenu',
|
|
23
|
-
'dblclick',
|
|
24
|
-
'pointerup',
|
|
25
|
-
'pointerdown',
|
|
26
|
-
'pointerover',
|
|
27
|
-
'pointerout',
|
|
28
|
-
'pointerenter',
|
|
29
|
-
'pointerleave',
|
|
30
|
-
'pointermove',
|
|
31
|
-
'pointermissed',
|
|
32
|
-
'pointercancel',
|
|
33
|
-
'wheel',
|
|
34
|
-
];
|
|
35
|
-
const NGT_OBJECT3D_INPUTS = [
|
|
36
|
-
'name',
|
|
37
|
-
'position',
|
|
38
|
-
'rotation',
|
|
39
|
-
'quaternion',
|
|
40
|
-
'scale',
|
|
41
|
-
'modelViewMatrix',
|
|
42
|
-
'normalMatrix',
|
|
43
|
-
'matrix',
|
|
44
|
-
'matrixWorld',
|
|
45
|
-
'matrixAutoUpdate',
|
|
46
|
-
'matrixWorldAutoUpdate',
|
|
47
|
-
'matrixWorldNeedsUpdate',
|
|
48
|
-
'layers',
|
|
49
|
-
'visible',
|
|
50
|
-
'castShadow',
|
|
51
|
-
'receiveShadow',
|
|
52
|
-
'frustumCulled',
|
|
53
|
-
'renderOrder',
|
|
54
|
-
'animations',
|
|
55
|
-
'userData',
|
|
56
|
-
'customDepthMaterial',
|
|
57
|
-
'customDistanceMaterial',
|
|
58
|
-
'onBeforeRender',
|
|
59
|
-
'onAfterRender',
|
|
60
|
-
];
|
|
61
|
-
|
|
62
|
-
class NgtObjectPrimitive extends THREE.Object3D {
|
|
63
|
-
constructor() {
|
|
64
|
-
super();
|
|
65
|
-
const [object] = injectArgs();
|
|
66
|
-
return proxify(object, { primitive: true });
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
NgtObjectPrimitive.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtObjectPrimitive, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
70
|
-
NgtObjectPrimitive.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtObjectPrimitive, isStandalone: true, selector: "ngt-object-primitive", 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(NgtObjectPrimitive)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"], outputs: ["click", "click", "contextmenu", "contextmenu", "dblclick", "dblclick", "pointerup", "pointerup", "pointerdown", "pointerdown", "pointerover", "pointerover", "pointerout", "pointerout", "pointerenter", "pointerenter", "pointerleave", "pointerleave", "pointermove", "pointermove", "pointermissed", "pointermissed", "pointercancel", "pointercancel", "wheel", "wheel"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
71
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtObjectPrimitive, decorators: [{
|
|
72
|
-
type: Component,
|
|
73
|
-
args: [{
|
|
74
|
-
selector: 'ngt-object-primitive',
|
|
75
|
-
standalone: true,
|
|
76
|
-
template: '<ng-content></ng-content>',
|
|
77
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
78
|
-
providers: [provideInstanceRef(NgtObjectPrimitive)],
|
|
79
|
-
inputs: NGT_OBJECT3D_INPUTS,
|
|
80
|
-
}]
|
|
81
|
-
}], ctorParameters: function () { return []; } });
|
|
82
|
-
|
|
83
|
-
class NgtPrimitive extends NgtComponentStore {
|
|
84
|
-
constructor() {
|
|
85
|
-
super();
|
|
86
|
-
const [object] = injectArgs();
|
|
87
|
-
return proxify(object, { primitive: true });
|
|
88
|
-
}
|
|
89
|
-
set props(props) {
|
|
90
|
-
if (this.propsSubscription) {
|
|
91
|
-
this.propsSubscription.unsubscribe();
|
|
92
|
-
}
|
|
93
|
-
this.propsSubscription = this.effect(tap((properties) => {
|
|
94
|
-
for (const [key, value] of Object.entries(properties)) {
|
|
95
|
-
this[key] = value;
|
|
96
|
-
}
|
|
97
|
-
}))(props);
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
NgtPrimitive.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPrimitive, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
101
|
-
NgtPrimitive.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtPrimitive, isStandalone: true, selector: "ngt-primitive", inputs: { props: "props" }, providers: [provideInstanceRef(NgtPrimitive)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
102
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPrimitive, decorators: [{
|
|
103
|
-
type: Component,
|
|
104
|
-
args: [{
|
|
105
|
-
selector: 'ngt-primitive',
|
|
106
|
-
standalone: true,
|
|
107
|
-
template: '<ng-content></ng-content>',
|
|
108
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
109
|
-
providers: [provideInstanceRef(NgtPrimitive)],
|
|
110
|
-
}]
|
|
111
|
-
}], ctorParameters: function () { return []; }, propDecorators: { props: [{
|
|
112
|
-
type: Input
|
|
113
|
-
}] } });
|
|
114
|
-
|
|
115
|
-
/**
|
|
116
|
-
* Generated bundle index. Do not edit.
|
|
117
|
-
*/
|
|
118
|
-
|
|
119
|
-
export { NgtObjectPrimitive, NgtPrimitive };
|
|
120
|
-
//# sourceMappingURL=angular-three-primitives.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"angular-three-primitives.mjs","sources":["../../../../packages/angular-three/primitives/src/lib/common.ts","../../../../packages/angular-three/primitives/src/lib/object-primitive/object-primitive.ts","../../../../packages/angular-three/primitives/src/lib/primitive/primitive.ts","../../../../packages/angular-three/primitives/src/angular-three-primitives.ts"],"sourcesContent":["// GENERATED - AngularThree v1.0.0\nexport const NGT_INSTANCE_INPUTS = [\n 'ref',\n 'attach',\n 'skipWrapper',\n 'skipInit',\n 'noAttach',\n 'beforeRender',\n 'priority',\n 'updateCallback',\n 'readyCallback',\n];\n\nexport const NGT_INSTANCE_OUTPUTS = [\n 'click',\n 'contextmenu',\n 'dblclick',\n 'pointerup',\n 'pointerdown',\n 'pointerover',\n 'pointerout',\n 'pointerenter',\n 'pointerleave',\n 'pointermove',\n 'pointermissed',\n 'pointercancel',\n 'wheel',\n];\n\nexport const NGT_OBJECT3D_INPUTS = [\n 'name',\n 'position',\n 'rotation',\n 'quaternion',\n 'scale',\n 'modelViewMatrix',\n 'normalMatrix',\n 'matrix',\n 'matrixWorld',\n 'matrixAutoUpdate',\n 'matrixWorldAutoUpdate',\n 'matrixWorldNeedsUpdate',\n 'layers',\n 'visible',\n 'castShadow',\n 'receiveShadow',\n 'frustumCulled',\n 'renderOrder',\n 'animations',\n 'userData',\n 'customDepthMaterial',\n 'customDistanceMaterial',\n 'onBeforeRender',\n 'onAfterRender',\n];\n","import * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport {\n injectArgs,\n NgtEuler,\n NgtInstance,\n NgtLayers,\n NgtMatrix4,\n NgtObservableInput,\n NgtQuaternion,\n NgtVector3,\n provideInstanceRef,\n proxify,\n} from 'angular-three';\nimport { NGT_INSTANCE_INPUTS, NGT_INSTANCE_OUTPUTS, NGT_OBJECT3D_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-object-primitive',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],\n providers: [provideInstanceRef(NgtObjectPrimitive)],\n inputs: NGT_OBJECT3D_INPUTS,\n})\nexport class NgtObjectPrimitive extends THREE.Object3D {\n constructor() {\n super();\n const [object] = injectArgs();\n return proxify<THREE.Object3D>(object, { primitive: true });\n }\n\n static ngAcceptInputType_name: NgtObservableInput<string>;\n static ngAcceptInputType_position: NgtObservableInput<NgtVector3>;\n static ngAcceptInputType_rotation: NgtObservableInput<NgtEuler>;\n static ngAcceptInputType_quaternion: NgtObservableInput<NgtQuaternion>;\n static ngAcceptInputType_scale: NgtObservableInput<NgtVector3>;\n static ngAcceptInputType_modelViewMatrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_normalMatrix: NgtObservableInput<THREE.Matrix3>;\n static ngAcceptInputType_matrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_matrixWorld: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_matrixAutoUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_matrixWorldAutoUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_matrixWorldNeedsUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_layers: NgtObservableInput<NgtLayers>;\n static ngAcceptInputType_visible: NgtObservableInput<boolean>;\n static ngAcceptInputType_castShadow: NgtObservableInput<boolean>;\n static ngAcceptInputType_receiveShadow: NgtObservableInput<boolean>;\n static ngAcceptInputType_frustumCulled: NgtObservableInput<boolean>;\n static ngAcceptInputType_renderOrder: NgtObservableInput<number>;\n static ngAcceptInputType_animations: NgtObservableInput<THREE.AnimationClip[]>;\n static ngAcceptInputType_userData: NgtObservableInput<{ [key: string]: any }>;\n static ngAcceptInputType_customDepthMaterial: NgtObservableInput<THREE.Material>;\n static ngAcceptInputType_customDistanceMaterial: NgtObservableInput<THREE.Material>;\n static ngAcceptInputType_onBeforeRender: NgtObservableInput<\n (\n renderer: THREE.WebGLRenderer,\n scene: THREE.Scene,\n camera: THREE.Camera,\n geometry: THREE.BufferGeometry,\n material: THREE.Material,\n group: THREE.Group\n ) => void\n >;\n static ngAcceptInputType_onAfterRender: NgtObservableInput<\n (\n renderer: THREE.WebGLRenderer,\n scene: THREE.Scene,\n camera: THREE.Camera,\n geometry: THREE.BufferGeometry,\n material: THREE.Material,\n group: THREE.Group\n ) => void\n >;\n}\n","import { Component, Input } from '@angular/core';\nimport {\n injectArgs,\n NgtAnyRecord,\n NgtComponentStore,\n NgtInstance,\n NgtObservableInput,\n provideInstanceRef,\n proxify,\n} from 'angular-three';\nimport { Subscription, tap } from 'rxjs';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-primitive',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtPrimitive)],\n})\nexport class NgtPrimitive extends NgtComponentStore {\n private propsSubscription?: Subscription;\n @Input() set props(props: NgtObservableInput<NgtAnyRecord>) {\n if (this.propsSubscription) {\n this.propsSubscription.unsubscribe();\n }\n\n this.propsSubscription = this.effect<NgtAnyRecord>(\n tap((properties) => {\n for (const [key, value] of Object.entries(properties)) {\n this[key as keyof typeof this] = value;\n }\n })\n )(props);\n }\n\n constructor() {\n super();\n const [object] = injectArgs();\n return proxify(object, { primitive: true });\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import { NgtComponentStore, tapEffect, addEffect, addAfterEffect } from 'angular-three';
|
|
2
|
-
import { DOCUMENT } from '@angular/common';
|
|
3
|
-
import * as i0 from '@angular/core';
|
|
4
|
-
import { inject, NgZone, Component, ChangeDetectionStrategy, Input } from '@angular/core';
|
|
5
|
-
import Stats from 'three/examples/jsm/libs/stats.module';
|
|
6
|
-
|
|
7
|
-
class NgtStats extends NgtComponentStore {
|
|
8
|
-
constructor() {
|
|
9
|
-
super(...arguments);
|
|
10
|
-
this.zone = inject(NgZone);
|
|
11
|
-
this.document = inject(DOCUMENT);
|
|
12
|
-
this.showPanel = 0;
|
|
13
|
-
this._stats = Stats();
|
|
14
|
-
this.node = this.document.body;
|
|
15
|
-
}
|
|
16
|
-
get stats() {
|
|
17
|
-
return this._stats;
|
|
18
|
-
}
|
|
19
|
-
ngOnInit() {
|
|
20
|
-
this.zone.runOutsideAngular(() => {
|
|
21
|
-
this.effect(tapEffect(() => {
|
|
22
|
-
if (this.parent) {
|
|
23
|
-
this.node = this.parent;
|
|
24
|
-
}
|
|
25
|
-
this.stats.showPanel(this.showPanel);
|
|
26
|
-
this.node.appendChild(this.stats.dom);
|
|
27
|
-
const beginCallbackCleanup = addEffect(() => this.stats.begin());
|
|
28
|
-
const endCallbackCleanup = addAfterEffect(() => this.stats.end());
|
|
29
|
-
return () => {
|
|
30
|
-
if (this.stats) {
|
|
31
|
-
this.node.removeChild(this.stats.dom);
|
|
32
|
-
beginCallbackCleanup();
|
|
33
|
-
endCallbackCleanup();
|
|
34
|
-
}
|
|
35
|
-
};
|
|
36
|
-
}))();
|
|
37
|
-
});
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
NgtStats.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtStats, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
41
|
-
NgtStats.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtStats, isStandalone: true, selector: "ngt-stats", inputs: { parent: "parent", showPanel: "showPanel" }, usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
42
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtStats, decorators: [{
|
|
43
|
-
type: Component,
|
|
44
|
-
args: [{
|
|
45
|
-
selector: 'ngt-stats',
|
|
46
|
-
standalone: true,
|
|
47
|
-
template: '<ng-content></ng-content>',
|
|
48
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
49
|
-
}]
|
|
50
|
-
}], propDecorators: { parent: [{
|
|
51
|
-
type: Input
|
|
52
|
-
}], showPanel: [{
|
|
53
|
-
type: Input
|
|
54
|
-
}] } });
|
|
55
|
-
|
|
56
|
-
/**
|
|
57
|
-
* Generated bundle index. Do not edit.
|
|
58
|
-
*/
|
|
59
|
-
|
|
60
|
-
export { NgtStats };
|
|
61
|
-
//# sourceMappingURL=angular-three-stats.mjs.map
|
|
62
|
-
//# sourceMappingURL=angular-three-stats.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"angular-three-stats.mjs","sources":["../../../../packages/angular-three/stats/src/lib/stats/stats.ts","../../../../packages/angular-three/stats/src/angular-three-stats.ts"],"sourcesContent":["import { addAfterEffect, addEffect, NgtComponentStore, tapEffect } from 'angular-three';\nimport { DOCUMENT } from '@angular/common';\nimport { ChangeDetectionStrategy, Component, inject, Input, NgZone, OnInit } from '@angular/core';\n\nimport Stats from 'three/examples/jsm/libs/stats.module';\n\n@Component({\n selector: 'ngt-stats',\n standalone: true,\n template: '<ng-content></ng-content>',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class NgtStats extends NgtComponentStore implements OnInit {\n private readonly zone = inject(NgZone);\n private readonly document = inject(DOCUMENT);\n\n @Input() parent?: HTMLElement;\n @Input() showPanel = 0;\n\n private readonly _stats = Stats();\n private node = this.document.body;\n\n get stats() {\n return this._stats;\n }\n\n ngOnInit() {\n this.zone.runOutsideAngular(() => {\n this.effect<void>(\n tapEffect(() => {\n if (this.parent) {\n this.node = this.parent;\n }\n\n this.stats.showPanel(this.showPanel);\n this.node.appendChild(this.stats.dom);\n\n const beginCallbackCleanup = addEffect(() => this.stats.begin());\n const endCallbackCleanup = addAfterEffect(() => this.stats.end());\n\n return () => {\n if (this.stats) {\n this.node.removeChild(this.stats.dom);\n beginCallbackCleanup();\n endCallbackCleanup();\n }\n };\n })\n )();\n });\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;AAYM,MAAO,QAAS,SAAQ,iBAAiB,CAAA;AAN/C,IAAA,WAAA,GAAA;;AAOqB,QAAA,IAAA,CAAA,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC;AACtB,QAAA,IAAA,CAAA,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC;AAGpC,QAAA,IAAS,CAAA,SAAA,GAAG,CAAC,CAAC;AAEN,QAAA,IAAM,CAAA,MAAA,GAAG,KAAK,EAAE,CAAC;QAC1B,IAAA,CAAA,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC;KA+BrC;AA7BG,IAAA,IAAI,KAAK,GAAA;QACL,OAAO,IAAI,CAAC,MAAM,CAAC;KACtB;IAED,QAAQ,GAAA;AACJ,QAAA,IAAI,CAAC,IAAI,CAAC,iBAAiB,CAAC,MAAK;AAC7B,YAAA,IAAI,CAAC,MAAM,CACP,SAAS,CAAC,MAAK;gBACX,IAAI,IAAI,CAAC,MAAM,EAAE;AACb,oBAAA,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC;AAC3B,iBAAA;gBAED,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;gBACrC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;AAEtC,gBAAA,MAAM,oBAAoB,GAAG,SAAS,CAAC,MAAM,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC;AACjE,gBAAA,MAAM,kBAAkB,GAAG,cAAc,CAAC,MAAM,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC;AAElE,gBAAA,OAAO,MAAK;oBACR,IAAI,IAAI,CAAC,KAAK,EAAE;wBACZ,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;AACtC,wBAAA,oBAAoB,EAAE,CAAC;AACvB,wBAAA,kBAAkB,EAAE,CAAC;AACxB,qBAAA;AACL,iBAAC,CAAC;aACL,CAAC,CACL,EAAE,CAAC;AACR,SAAC,CAAC,CAAC;KACN;;qGAtCQ,QAAQ,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAR,QAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,QAAQ,kJAHP,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA;2FAG5B,QAAQ,EAAA,UAAA,EAAA,CAAA;kBANpB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,WAAW;AACrB,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,eAAe,EAAE,uBAAuB,CAAC,MAAM;iBAClD,CAAA;8BAKY,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;;;ACjBV;;AAEG;;;;"}
|
|
@@ -1,228 +0,0 @@
|
|
|
1
|
-
import * as THREE from 'three';
|
|
2
|
-
import * as i0 from '@angular/core';
|
|
3
|
-
import { Component } from '@angular/core';
|
|
4
|
-
import * as i1 from 'angular-three';
|
|
5
|
-
import { injectArgs, proxify, provideInstanceRef, NgtInstance } from 'angular-three';
|
|
6
|
-
|
|
7
|
-
// GENERATED - AngularThree v1.0.0
|
|
8
|
-
const NGT_INSTANCE_INPUTS = [
|
|
9
|
-
'ref',
|
|
10
|
-
'attach',
|
|
11
|
-
'skipWrapper',
|
|
12
|
-
'skipInit',
|
|
13
|
-
'noAttach',
|
|
14
|
-
'beforeRender',
|
|
15
|
-
'priority',
|
|
16
|
-
'updateCallback',
|
|
17
|
-
'readyCallback',
|
|
18
|
-
];
|
|
19
|
-
|
|
20
|
-
// GENERATED - AngularThree v1.0.0
|
|
21
|
-
class NgtCanvasTexture extends THREE.CanvasTexture {
|
|
22
|
-
constructor() {
|
|
23
|
-
super(...injectArgs());
|
|
24
|
-
return proxify(this);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
NgtCanvasTexture.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCanvasTexture, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
28
|
-
NgtCanvasTexture.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtCanvasTexture, isStandalone: true, selector: "ngt-canvas-texture", providers: [provideInstanceRef(NgtCanvasTexture)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
29
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCanvasTexture, decorators: [{
|
|
30
|
-
type: Component,
|
|
31
|
-
args: [{
|
|
32
|
-
selector: 'ngt-canvas-texture',
|
|
33
|
-
standalone: true,
|
|
34
|
-
template: '<ng-content></ng-content>',
|
|
35
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
36
|
-
providers: [provideInstanceRef(NgtCanvasTexture)],
|
|
37
|
-
}]
|
|
38
|
-
}], ctorParameters: function () { return []; } });
|
|
39
|
-
|
|
40
|
-
// GENERATED - AngularThree v1.0.0
|
|
41
|
-
class NgtCompressedArrayTexture extends THREE.CompressedArrayTexture {
|
|
42
|
-
constructor() {
|
|
43
|
-
super(...injectArgs());
|
|
44
|
-
return proxify(this);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
NgtCompressedArrayTexture.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCompressedArrayTexture, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
48
|
-
NgtCompressedArrayTexture.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtCompressedArrayTexture, isStandalone: true, selector: "ngt-compressed-array-texture", providers: [provideInstanceRef(NgtCompressedArrayTexture)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
49
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCompressedArrayTexture, decorators: [{
|
|
50
|
-
type: Component,
|
|
51
|
-
args: [{
|
|
52
|
-
selector: 'ngt-compressed-array-texture',
|
|
53
|
-
standalone: true,
|
|
54
|
-
template: '<ng-content></ng-content>',
|
|
55
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
56
|
-
providers: [provideInstanceRef(NgtCompressedArrayTexture)],
|
|
57
|
-
}]
|
|
58
|
-
}], ctorParameters: function () { return []; } });
|
|
59
|
-
|
|
60
|
-
// GENERATED - AngularThree v1.0.0
|
|
61
|
-
class NgtCompressedTexture extends THREE.CompressedTexture {
|
|
62
|
-
constructor() {
|
|
63
|
-
super(...injectArgs());
|
|
64
|
-
return proxify(this);
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
NgtCompressedTexture.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCompressedTexture, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
68
|
-
NgtCompressedTexture.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtCompressedTexture, isStandalone: true, selector: "ngt-compressed-texture", providers: [provideInstanceRef(NgtCompressedTexture)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
69
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCompressedTexture, decorators: [{
|
|
70
|
-
type: Component,
|
|
71
|
-
args: [{
|
|
72
|
-
selector: 'ngt-compressed-texture',
|
|
73
|
-
standalone: true,
|
|
74
|
-
template: '<ng-content></ng-content>',
|
|
75
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
76
|
-
providers: [provideInstanceRef(NgtCompressedTexture)],
|
|
77
|
-
}]
|
|
78
|
-
}], ctorParameters: function () { return []; } });
|
|
79
|
-
|
|
80
|
-
// GENERATED - AngularThree v1.0.0
|
|
81
|
-
class NgtCubeTexture extends THREE.CubeTexture {
|
|
82
|
-
constructor() {
|
|
83
|
-
super(...injectArgs());
|
|
84
|
-
return proxify(this);
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
NgtCubeTexture.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCubeTexture, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
88
|
-
NgtCubeTexture.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtCubeTexture, isStandalone: true, selector: "ngt-cube-texture", providers: [provideInstanceRef(NgtCubeTexture)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
89
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCubeTexture, decorators: [{
|
|
90
|
-
type: Component,
|
|
91
|
-
args: [{
|
|
92
|
-
selector: 'ngt-cube-texture',
|
|
93
|
-
standalone: true,
|
|
94
|
-
template: '<ng-content></ng-content>',
|
|
95
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
96
|
-
providers: [provideInstanceRef(NgtCubeTexture)],
|
|
97
|
-
}]
|
|
98
|
-
}], ctorParameters: function () { return []; } });
|
|
99
|
-
|
|
100
|
-
// GENERATED - AngularThree v1.0.0
|
|
101
|
-
class NgtData3DTexture extends THREE.Data3DTexture {
|
|
102
|
-
constructor() {
|
|
103
|
-
super(...injectArgs());
|
|
104
|
-
return proxify(this);
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
NgtData3DTexture.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtData3DTexture, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
108
|
-
NgtData3DTexture.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtData3DTexture, isStandalone: true, selector: "ngt-data3-dtexture", providers: [provideInstanceRef(NgtData3DTexture)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
109
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtData3DTexture, decorators: [{
|
|
110
|
-
type: Component,
|
|
111
|
-
args: [{
|
|
112
|
-
selector: 'ngt-data3-dtexture',
|
|
113
|
-
standalone: true,
|
|
114
|
-
template: '<ng-content></ng-content>',
|
|
115
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
116
|
-
providers: [provideInstanceRef(NgtData3DTexture)],
|
|
117
|
-
}]
|
|
118
|
-
}], ctorParameters: function () { return []; } });
|
|
119
|
-
|
|
120
|
-
// GENERATED - AngularThree v1.0.0
|
|
121
|
-
class NgtDataArrayTexture extends THREE.DataArrayTexture {
|
|
122
|
-
constructor() {
|
|
123
|
-
super(...injectArgs());
|
|
124
|
-
return proxify(this);
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
NgtDataArrayTexture.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDataArrayTexture, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
128
|
-
NgtDataArrayTexture.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtDataArrayTexture, isStandalone: true, selector: "ngt-data-array-texture", providers: [provideInstanceRef(NgtDataArrayTexture)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
129
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDataArrayTexture, decorators: [{
|
|
130
|
-
type: Component,
|
|
131
|
-
args: [{
|
|
132
|
-
selector: 'ngt-data-array-texture',
|
|
133
|
-
standalone: true,
|
|
134
|
-
template: '<ng-content></ng-content>',
|
|
135
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
136
|
-
providers: [provideInstanceRef(NgtDataArrayTexture)],
|
|
137
|
-
}]
|
|
138
|
-
}], ctorParameters: function () { return []; } });
|
|
139
|
-
|
|
140
|
-
// GENERATED - AngularThree v1.0.0
|
|
141
|
-
class NgtDataTexture extends THREE.DataTexture {
|
|
142
|
-
constructor() {
|
|
143
|
-
super(...injectArgs());
|
|
144
|
-
return proxify(this);
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
NgtDataTexture.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDataTexture, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
148
|
-
NgtDataTexture.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtDataTexture, isStandalone: true, selector: "ngt-data-texture", providers: [provideInstanceRef(NgtDataTexture)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
149
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDataTexture, decorators: [{
|
|
150
|
-
type: Component,
|
|
151
|
-
args: [{
|
|
152
|
-
selector: 'ngt-data-texture',
|
|
153
|
-
standalone: true,
|
|
154
|
-
template: '<ng-content></ng-content>',
|
|
155
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
156
|
-
providers: [provideInstanceRef(NgtDataTexture)],
|
|
157
|
-
}]
|
|
158
|
-
}], ctorParameters: function () { return []; } });
|
|
159
|
-
|
|
160
|
-
// GENERATED - AngularThree v1.0.0
|
|
161
|
-
class NgtDepthTexture extends THREE.DepthTexture {
|
|
162
|
-
constructor() {
|
|
163
|
-
super(...injectArgs());
|
|
164
|
-
return proxify(this);
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
NgtDepthTexture.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDepthTexture, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
168
|
-
NgtDepthTexture.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtDepthTexture, isStandalone: true, selector: "ngt-depth-texture", providers: [provideInstanceRef(NgtDepthTexture)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
169
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDepthTexture, decorators: [{
|
|
170
|
-
type: Component,
|
|
171
|
-
args: [{
|
|
172
|
-
selector: 'ngt-depth-texture',
|
|
173
|
-
standalone: true,
|
|
174
|
-
template: '<ng-content></ng-content>',
|
|
175
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
176
|
-
providers: [provideInstanceRef(NgtDepthTexture)],
|
|
177
|
-
}]
|
|
178
|
-
}], ctorParameters: function () { return []; } });
|
|
179
|
-
|
|
180
|
-
// GENERATED - AngularThree v1.0.0
|
|
181
|
-
class NgtFramebufferTexture extends THREE.FramebufferTexture {
|
|
182
|
-
constructor() {
|
|
183
|
-
super(...injectArgs());
|
|
184
|
-
return proxify(this);
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
NgtFramebufferTexture.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFramebufferTexture, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
188
|
-
NgtFramebufferTexture.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtFramebufferTexture, isStandalone: true, selector: "ngt-framebuffer-texture", providers: [provideInstanceRef(NgtFramebufferTexture)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
189
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFramebufferTexture, decorators: [{
|
|
190
|
-
type: Component,
|
|
191
|
-
args: [{
|
|
192
|
-
selector: 'ngt-framebuffer-texture',
|
|
193
|
-
standalone: true,
|
|
194
|
-
template: '<ng-content></ng-content>',
|
|
195
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
196
|
-
providers: [provideInstanceRef(NgtFramebufferTexture)],
|
|
197
|
-
}]
|
|
198
|
-
}], ctorParameters: function () { return []; } });
|
|
199
|
-
|
|
200
|
-
// GENERATED - AngularThree v1.0.0
|
|
201
|
-
class NgtVideoTexture extends THREE.VideoTexture {
|
|
202
|
-
constructor() {
|
|
203
|
-
super(...injectArgs());
|
|
204
|
-
return proxify(this);
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
NgtVideoTexture.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtVideoTexture, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
208
|
-
NgtVideoTexture.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtVideoTexture, isStandalone: true, selector: "ngt-video-texture", providers: [provideInstanceRef(NgtVideoTexture)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
209
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtVideoTexture, decorators: [{
|
|
210
|
-
type: Component,
|
|
211
|
-
args: [{
|
|
212
|
-
selector: 'ngt-video-texture',
|
|
213
|
-
standalone: true,
|
|
214
|
-
template: '<ng-content></ng-content>',
|
|
215
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
216
|
-
providers: [provideInstanceRef(NgtVideoTexture)],
|
|
217
|
-
}]
|
|
218
|
-
}], ctorParameters: function () { return []; } });
|
|
219
|
-
|
|
220
|
-
// GENERATED - AngularThree v1.0.0
|
|
221
|
-
|
|
222
|
-
/**
|
|
223
|
-
* Generated bundle index. Do not edit.
|
|
224
|
-
*/
|
|
225
|
-
|
|
226
|
-
export { NgtCanvasTexture, NgtCompressedArrayTexture, NgtCompressedTexture, NgtCubeTexture, NgtData3DTexture, NgtDataArrayTexture, NgtDataTexture, NgtDepthTexture, NgtFramebufferTexture, NgtVideoTexture };
|
|
227
|
-
//# sourceMappingURL=angular-three-textures.mjs.map
|
|
228
|
-
//# sourceMappingURL=angular-three-textures.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"angular-three-textures.mjs","sources":["../../../../packages/angular-three/textures/src/lib/common.ts","../../../../packages/angular-three/textures/src/lib/canvas-texture/canvas-texture.ts","../../../../packages/angular-three/textures/src/lib/compressed-array-texture/compressed-array-texture.ts","../../../../packages/angular-three/textures/src/lib/compressed-texture/compressed-texture.ts","../../../../packages/angular-three/textures/src/lib/cube-texture/cube-texture.ts","../../../../packages/angular-three/textures/src/lib/data3-dtexture/data3-dtexture.ts","../../../../packages/angular-three/textures/src/lib/data-array-texture/data-array-texture.ts","../../../../packages/angular-three/textures/src/lib/data-texture/data-texture.ts","../../../../packages/angular-three/textures/src/lib/depth-texture/depth-texture.ts","../../../../packages/angular-three/textures/src/lib/framebuffer-texture/framebuffer-texture.ts","../../../../packages/angular-three/textures/src/lib/video-texture/video-texture.ts","../../../../packages/angular-three/textures/src/index.ts","../../../../packages/angular-three/textures/src/angular-three-textures.ts"],"sourcesContent":["// GENERATED - AngularThree v1.0.0\nexport const NGT_INSTANCE_INPUTS = [\n 'ref',\n 'attach',\n 'skipWrapper',\n 'skipInit',\n 'noAttach',\n 'beforeRender',\n 'priority',\n 'updateCallback',\n 'readyCallback',\n];\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-canvas-texture',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtCanvasTexture)],\n})\nexport class NgtCanvasTexture extends THREE.CanvasTexture {\n constructor() {\n super(...injectArgs<typeof THREE.CanvasTexture>());\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-compressed-array-texture',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtCompressedArrayTexture)],\n})\nexport class NgtCompressedArrayTexture extends THREE.CompressedArrayTexture {\n constructor() {\n super(...injectArgs<typeof THREE.CompressedArrayTexture>());\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-compressed-texture',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtCompressedTexture)],\n})\nexport class NgtCompressedTexture extends THREE.CompressedTexture {\n constructor() {\n super(...injectArgs<typeof THREE.CompressedTexture>());\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-cube-texture',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtCubeTexture)],\n})\nexport class NgtCubeTexture extends THREE.CubeTexture {\n constructor() {\n super(...injectArgs<typeof THREE.CubeTexture>());\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-data3-dtexture',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtData3DTexture)],\n})\nexport class NgtData3DTexture extends THREE.Data3DTexture {\n constructor() {\n super(...injectArgs<typeof THREE.Data3DTexture>());\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-data-array-texture',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtDataArrayTexture)],\n})\nexport class NgtDataArrayTexture extends THREE.DataArrayTexture {\n constructor() {\n super(...injectArgs<typeof THREE.DataArrayTexture>());\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-data-texture',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtDataTexture)],\n})\nexport class NgtDataTexture extends THREE.DataTexture {\n constructor() {\n super(...injectArgs<typeof THREE.DataTexture>());\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-depth-texture',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtDepthTexture)],\n})\nexport class NgtDepthTexture extends THREE.DepthTexture {\n constructor() {\n super(...injectArgs<typeof THREE.DepthTexture>());\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-framebuffer-texture',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtFramebufferTexture)],\n})\nexport class NgtFramebufferTexture extends THREE.FramebufferTexture {\n constructor() {\n super(...injectArgs<typeof THREE.FramebufferTexture>());\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-video-texture',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtVideoTexture)],\n})\nexport class NgtVideoTexture extends THREE.VideoTexture {\n constructor() {\n super(...injectArgs<typeof THREE.VideoTexture>());\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nexport * from './lib/canvas-texture/canvas-texture';\nexport * from './lib/compressed-array-texture/compressed-array-texture';\nexport * from './lib/compressed-texture/compressed-texture';\nexport * from './lib/cube-texture/cube-texture';\nexport * from './lib/data3-dtexture/data3-dtexture';\nexport * from './lib/data-array-texture/data-array-texture';\nexport * from './lib/data-texture/data-texture';\nexport * from './lib/depth-texture/depth-texture';\nexport * from './lib/framebuffer-texture/framebuffer-texture';\nexport * from './lib/video-texture/video-texture';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|