@xviewer.js/core 1.0.0-alpha.6 → 1.0.0-alpha.60
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/dist/main.js +4176 -12839
- package/dist/main.js.map +1 -1
- package/dist/module.js +4106 -12814
- package/dist/module.js.map +1 -1
- package/package.json +19 -21
- package/types/ObjectInstance.d.ts +2 -2
- package/types/PropertyManager.d.ts +14 -4
- package/types/SystemInfo.d.ts +1 -0
- package/types/Task.d.ts +2 -0
- package/types/TextureSettings.d.ts +3 -1
- package/types/Viewer.d.ts +51 -19
- package/types/asset/ResourceManager.d.ts +12 -26
- package/types/asset/aLoader.d.ts +9 -2
- package/types/base/EventEmitter.d.ts +10 -10
- package/types/base/getClassInstance.d.ts +1 -0
- package/types/base/index.d.ts +1 -0
- package/types/cinestation/CinestationBlendDefinition.d.ts +4 -4
- package/types/cinestation/CinestationBrain.d.ts +0 -2
- package/types/cinestation/FreelookVirtualCamera.d.ts +40 -21
- package/types/cinestation/VirtualCamera.d.ts +8 -8
- package/types/components/Animation.d.ts +26 -0
- package/types/components/PerformanceMonitor.d.ts +48 -0
- package/types/components/Reflector.d.ts +15 -0
- package/types/components/index.d.ts +2 -0
- package/types/index.d.ts +10 -2
- package/types/loaders/aEXRLoader.d.ts +6 -0
- package/types/loaders/aFBXLoader.d.ts +6 -0
- package/types/loaders/aGLTFLoader.d.ts +7 -0
- package/types/loaders/aHDRLoader.d.ts +6 -0
- package/types/loaders/aJSONLoader.d.ts +6 -0
- package/types/loaders/aTextureLoader.d.ts +6 -0
- package/types/{loader → loaders}/index.d.ts +3 -5
- package/types/materials/ReflectorMaterial.d.ts +28 -0
- package/types/{material → materials}/getShaderMaterial.d.ts +2 -2
- package/types/materials/glsl/index.d.ts +3 -0
- package/types/materials/index.d.ts +3 -0
- package/types/math/Constant.d.ts +8 -1
- package/types/math/Interpolation.d.ts +6 -6
- package/types/math/Perlin.d.ts +12 -0
- package/types/math/index.d.ts +5 -0
- package/types/passes/MipBlurPass.d.ts +27 -0
- package/types/passes/cubeuv/MergeBlurPass.d.ts +21 -0
- package/types/passes/cubeuv/MergeInfo.d.ts +9 -0
- package/types/passes/cubeuv/MergeReflectPass.d.ts +18 -0
- package/types/passes/cubeuv/utils.d.ts +16 -0
- package/types/passes/mipGaussianBlendWeight.d.ts +1 -0
- package/types/plugins/BoxProjectionPlugin.d.ts +20 -0
- package/types/plugins/DebugPlugin.d.ts +10 -0
- package/types/plugins/DropFilePlugin.d.ts +18 -0
- package/types/plugins/EnvironmentPlugin.d.ts +40 -0
- package/types/plugins/PerformanceMonitorPlugin.d.ts +48 -0
- package/types/plugins/index.d.ts +5 -0
- package/types/tween/Easing.d.ts +25 -0
- package/types/tween/Group.d.ts +16 -0
- package/types/tween/Interpolation.d.ts +19 -0
- package/types/tween/Now.d.ts +2 -0
- package/types/tween/Sequence.d.ts +7 -0
- package/types/tween/Tween.d.ts +96 -0
- package/types/tween/TweenChain.d.ts +15 -5
- package/types/tween/TweenManager.d.ts +0 -2
- package/types/tween/Version.d.ts +1 -0
- package/types/tween/index.d.ts +3 -1
- package/types/tween/mainGroup.d.ts +2 -0
- package/types/types.d.ts +4 -0
- package/types/loader/aFBXLoader.d.ts +0 -4
- package/types/loader/aGLTFLoader.d.ts +0 -4
- package/types/loader/aHDRLoader.d.ts +0 -4
- package/types/loader/aTextureLoader.d.ts +0 -4
- package/types/material/glsl/copy.glsl.d.ts +0 -1
- /package/types/{material → materials}/glsl/boxfilterblur.glsl.d.ts +0 -0
- /package/types/{material → materials}/glsl/fullscreen.glsl.d.ts +0 -0
- /package/types/{material → materials}/glsl/panorama.glsl.d.ts +0 -0
- /package/types/{primitives → primitive}/Box.d.ts +0 -0
- /package/types/{primitives → primitive}/Plane.d.ts +0 -0
- /package/types/{primitives → primitive}/Sphere.d.ts +0 -0
- /package/types/{primitives → primitive}/index.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const VERSION = "23.1.2";
|
package/types/tween/index.d.ts
CHANGED
package/types/types.d.ts
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const frag_Copy = "\nvarying vec2 vUv;\nuniform sampler2D tMain;\nuniform float uLod;\n\nvoid main() {\n gl_FragColor = texture(tMain, vUv, uLod);\n\t#include <encodings_fragment>\n}\n";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|