@shapediver/viewer.rendering-engine.light-engine 3.9.0 → 3.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/implementation/AbstractLight.d.ts +4 -4
- package/dist/implementation/AbstractLight.d.ts.map +1 -1
- package/dist/implementation/AbstractLight.js.map +1 -1
- package/dist/implementation/LightEngine.d.ts +5 -5
- package/dist/implementation/LightEngine.d.ts.map +1 -1
- package/dist/implementation/LightEngine.js +161 -62
- package/dist/implementation/LightEngine.js.map +1 -1
- package/dist/implementation/LightScene.d.ts +11 -11
- package/dist/implementation/LightScene.d.ts.map +1 -1
- package/dist/implementation/LightScene.js.map +1 -1
- package/dist/implementation/types/AmbientLight.d.ts +3 -3
- package/dist/implementation/types/AmbientLight.d.ts.map +1 -1
- package/dist/implementation/types/AmbientLight.js +5 -5
- package/dist/implementation/types/AmbientLight.js.map +1 -1
- package/dist/implementation/types/DirectionalLight.d.ts +4 -4
- package/dist/implementation/types/DirectionalLight.d.ts.map +1 -1
- package/dist/implementation/types/DirectionalLight.js +5 -5
- package/dist/implementation/types/DirectionalLight.js.map +1 -1
- package/dist/implementation/types/HemisphereLight.d.ts +3 -3
- package/dist/implementation/types/HemisphereLight.d.ts.map +1 -1
- package/dist/implementation/types/HemisphereLight.js +5 -5
- package/dist/implementation/types/HemisphereLight.js.map +1 -1
- package/dist/implementation/types/PointLight.d.ts +4 -4
- package/dist/implementation/types/PointLight.d.ts.map +1 -1
- package/dist/implementation/types/PointLight.js +5 -5
- package/dist/implementation/types/PointLight.js.map +1 -1
- package/dist/implementation/types/SpotLight.d.ts +4 -4
- package/dist/implementation/types/SpotLight.d.ts.map +1 -1
- package/dist/implementation/types/SpotLight.js +5 -5
- package/dist/implementation/types/SpotLight.js.map +1 -1
- package/dist/index.d.ts +18 -18
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/interface/ILight.d.ts +2 -2
- package/dist/interface/ILight.d.ts.map +1 -1
- package/dist/interface/ILight.js.map +1 -1
- package/dist/interface/ILightEngine.d.ts +1 -1
- package/dist/interface/ILightEngine.d.ts.map +1 -1
- package/dist/interface/ILightScene.d.ts +4 -4
- package/dist/interface/ILightScene.d.ts.map +1 -1
- package/dist/interface/types/IAmbientLight.d.ts +1 -1
- package/dist/interface/types/IAmbientLight.d.ts.map +1 -1
- package/dist/interface/types/IDirectionalLight.d.ts +2 -2
- package/dist/interface/types/IDirectionalLight.d.ts.map +1 -1
- package/dist/interface/types/IHemisphereLight.d.ts +2 -2
- package/dist/interface/types/IHemisphereLight.d.ts.map +1 -1
- package/dist/interface/types/IPointLight.d.ts +2 -2
- package/dist/interface/types/IPointLight.d.ts.map +1 -1
- package/dist/interface/types/ISpotLight.d.ts +2 -2
- package/dist/interface/types/ISpotLight.d.ts.map +1 -1
- package/package.json +47 -47
package/package.json
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
2
|
+
"name": "@shapediver/viewer.rendering-engine.light-engine",
|
|
3
|
+
"version": "3.9.2",
|
|
4
|
+
"description": "",
|
|
5
|
+
"keywords": [],
|
|
6
|
+
"author": "Michael Oppitz <michael@shapediver.com>",
|
|
7
|
+
"license": "polyform-noncommercial-1.0.0",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"directories": {
|
|
10
|
+
"test": "__tests__"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"package.json",
|
|
14
|
+
"dist/",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE"
|
|
17
|
+
],
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/shapediver/Viewer.git"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"check": "tsc --noEmit",
|
|
27
|
+
"build": "bash ../../scripts/building/build.sh",
|
|
28
|
+
"build-watch": "bash ../../scripts/building/build-watch.sh",
|
|
29
|
+
"build-dep": "bash ../../scripts/building/build-dep.sh"
|
|
30
|
+
},
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/shapediver/Viewer/issues"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://github.com/shapediver/Viewer#readme",
|
|
35
|
+
"typings": "dist/index.d.ts",
|
|
36
|
+
"jest": {
|
|
37
|
+
"preset": "ts-jest",
|
|
38
|
+
"testEnvironment": "node"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@shapediver/viewer.rendering-engine.rendering-engine": "3.9.2",
|
|
42
|
+
"@shapediver/viewer.settings": "1.1.6",
|
|
43
|
+
"@shapediver/viewer.shared.node-tree": "3.9.2",
|
|
44
|
+
"@shapediver/viewer.shared.services": "3.9.2",
|
|
45
|
+
"@shapediver/viewer.shared.types": "3.9.2",
|
|
46
|
+
"gl-matrix": "3.3.0"
|
|
47
|
+
},
|
|
48
|
+
"gitHead": "89e79c63e38e785a60e38750c4fce9a9637235c2"
|
|
49
49
|
}
|