@realsee/five 6.4.0-alpha.6 → 6.4.0-alpha.8
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/docs/assets/navigation.js +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/classes/five.Five.html +58 -58
- package/docs/classes/five.Model.html +2 -2
- package/docs/classes/five.Tile3DModel.html +2 -1
- package/docs/interfaces/five.FiveLoadOptions.html +2 -2
- package/docs/interfaces/five.Tile3dLayerOptions.html +27 -0
- package/docs/modules/five.html +2 -0
- package/docs/types/five.Mirror.html +1 -1
- package/docs/types/five.Tile3dOptions.html +1 -0
- package/five/index.d.ts +5 -4
- package/five/index.js +54 -54
- package/five/index.mjs +2361 -2354
- package/gltf-loader/index.js +3 -3
- package/gltf-loader/index.mjs +3 -3
- package/line/index.js +3 -3
- package/line/index.mjs +3 -3
- package/package.json +1 -1
- package/plugins/index.js +2 -2
- package/plugins/index.mjs +2 -2
- package/react/index.d.ts +1 -1
- package/react/index.js +2 -2
- package/react/index.mjs +2 -2
- package/shader-lib/index.js +2 -2
- package/shader-lib/index.mjs +2 -2
- package/sticker/index.js +3 -3
- package/sticker/index.mjs +3 -3
- package/umd/five-gltf-loader.js +3 -3
- package/umd/five-line.js +3 -3
- package/umd/five-plugins.js +2 -2
- package/umd/five-react.js +2 -2
- package/umd/five-shader-lib.js +2 -2
- package/umd/five-sticker.js +3 -3
- package/umd/five-vfx.js +2 -2
- package/umd/five-vue.js +2 -2
- package/umd/five.js +36 -36
- package/vfx/index.js +2 -2
- package/vfx/index.mjs +2 -2
- package/vue/index.d.ts +1 -1
- package/vue/index.js +2 -2
- package/vue/index.mjs +2 -2
package/vfx/index.js
CHANGED
package/vfx/index.mjs
CHANGED
package/vue/index.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export declare interface FiveActionVueCallbacks {
|
|
|
51
51
|
getPixels<T extends Uint8Array | Uint8ClampedArray = Uint8Array>(x: number, y: number, width: number, height: number, pixelRatio?: number, flipY?: boolean, buffer?: T): T;
|
|
52
52
|
/**
|
|
53
53
|
* 获取画面中的像素颜色
|
|
54
|
-
* @param options 参数
|
|
54
|
+
* @param options - 参数
|
|
55
55
|
* @returns
|
|
56
56
|
*/
|
|
57
57
|
getPixels<T extends Uint8Array | Uint8ClampedArray = Uint8Array>(options: {
|
package/vue/index.js
CHANGED