@realsee/five 6.6.0-alpha.3 → 6.6.0-alpha.5
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/classes/five.Tile3DModel.html +26 -26
- package/docs/classes/five.TileNode.html +1 -1
- package/docs/interfaces/five.Intersection.html +5 -3
- package/docs/interfaces/five.Tile3DModelLoaderOptions.html +2 -2
- package/docs/interfaces/five.ViewLayer.html +25 -25
- package/five/index.d.ts +6 -1
- package/five/index.js +41 -41
- package/five/index.mjs +1225 -1126
- 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.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 +41 -41
- package/vfx/index.js +2 -2
- package/vfx/index.mjs +2 -2
- package/vue/index.js +2 -2
- package/vue/index.mjs +2 -2
- package/work-downloader/index.js +2 -2
- package/work-downloader/index.mjs +2 -2
package/five/index.d.ts
CHANGED
|
@@ -1236,8 +1236,13 @@ export declare interface IntersectEvent extends BaseEvent {
|
|
|
1236
1236
|
|
|
1237
1237
|
export declare interface Intersection extends THREE_2.Intersection {
|
|
1238
1238
|
/** 楼层 */
|
|
1239
|
-
floor: number;
|
|
1240
1239
|
floorIndex: number;
|
|
1240
|
+
/**
|
|
1241
|
+
* 楼层
|
|
1242
|
+
* @deprecated
|
|
1243
|
+
* use floorIndex instead.
|
|
1244
|
+
*/
|
|
1245
|
+
floor: number;
|
|
1241
1246
|
model?: Model;
|
|
1242
1247
|
viewLayer?: ViewLayer;
|
|
1243
1248
|
}
|