@realsee/dnalogel 0.1.5 → 0.1.7-alpha.4
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/components/GLTFView/index.d.ts +104 -0
- package/components/GLTFView/index.js +181 -0
- package/data/81zxMaeVKLQU93OZMG.d.ts +49 -0
- package/data/81zxMaeVKLQU93OZMG.js +633 -0
- package/data/PrXel3aqGbp34JQn.js +139 -1
- package/data/vLykj3NWrllMrG06.js +335 -71
- package/libs/gltf-viewer/Subscribe.d.ts +76 -0
- package/libs/gltf-viewer/Subscribe.js +231 -0
- package/libs/gltf-viewer/coordsMoveByOffset.d.ts +13 -0
- package/libs/gltf-viewer/coordsMoveByOffset.js +22 -0
- package/libs/gltf-viewer/coordsToDirection.d.ts +5 -0
- package/{components/PBRView/index.js → libs/gltf-viewer/coordsToDirection.js} +14 -18
- package/libs/gltf-viewer/formatRad.d.ts +1 -0
- package/libs/gltf-viewer/formatRad.js +13 -0
- package/libs/gltf-viewer/getFrameTime.d.ts +1 -0
- package/libs/gltf-viewer/getFrameTime.js +28 -0
- package/libs/gltf-viewer/index.d.ts +69 -0
- package/libs/gltf-viewer/index.js +744 -0
- package/libs/gltf-viewer/mouseWheel.d.ts +2 -0
- package/libs/gltf-viewer/mouseWheel.js +59 -0
- package/libs/gltf-viewer/requestAnimationFrame.d.ts +1 -0
- package/libs/gltf-viewer/requestAnimationFrame.js +18 -0
- package/libs/gltf-viewer/requestAnimationFrameInterval.d.ts +1 -0
- package/libs/gltf-viewer/requestAnimationFrameInterval.js +31 -0
- package/libs/gltf-viewer/uuid.d.ts +4 -0
- package/libs/gltf-viewer/uuid.js +28 -0
- package/package.json +5 -4
- package/plugins/ModelEntryDoorGuidePlugin/index.d.ts +6 -2
- package/plugins/ModelEntryDoorGuidePlugin/index.js +22 -14
- package/plugins/ModelRoomLabelPlugin/Controller.js +1 -0
- package/plugins/ModelRoomLabelPlugin/RoomLabelItem.js +5 -5
- package/plugins/ModelRoomLabelPlugin/index.d.ts +4 -0
- package/plugins/ModelRoomLabelPlugin/index.js +7 -2
- package/plugins/PanoMaskSelectorPlugin/createBox.js +3 -0
- package/plugins/PanoMaskSelectorPlugin/index.js +3 -1
- package/plugins/PanoMeasurePlugin/Controller/BaseController.d.ts +36 -0
- package/plugins/PanoMeasurePlugin/Controller/BaseController.js +103 -0
- package/plugins/PanoMeasurePlugin/Controller/EditController.d.ts +52 -0
- package/plugins/PanoMeasurePlugin/Controller/EditController.js +341 -0
- package/plugins/PanoMeasurePlugin/Controller/ShortcutKeyController.d.ts +12 -0
- package/plugins/PanoMeasurePlugin/Controller/ShortcutKeyController.js +69 -0
- package/plugins/PanoMeasurePlugin/Controller/WatchController.d.ts +25 -0
- package/plugins/PanoMeasurePlugin/Controller/WatchController.js +371 -0
- package/plugins/PanoMeasurePlugin/Controller/index.d.ts +61 -0
- package/plugins/PanoMeasurePlugin/Controller/index.js +230 -0
- package/plugins/PanoMeasurePlugin/Model/index.d.ts +38 -0
- package/plugins/PanoMeasurePlugin/Model/index.js +235 -0
- package/plugins/PanoMeasurePlugin/Model/line.d.ts +30 -0
- package/plugins/PanoMeasurePlugin/Model/line.js +121 -0
- package/plugins/PanoMeasurePlugin/Model/point.d.ts +16 -0
- package/plugins/PanoMeasurePlugin/Model/point.js +68 -0
- package/plugins/PanoMeasurePlugin/Model/polyline.d.ts +16 -0
- package/plugins/PanoMeasurePlugin/Model/polyline.js +109 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete.svg.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete.svg.js +11 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_bg.png.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_bg.png.js +11 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_hover_bg.png.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_hover_bg.png.js +11 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/index.d.ts +22 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/index.js +182 -0
- package/plugins/PanoMeasurePlugin/Modules/FiveHelper.d.ts +11 -0
- package/plugins/PanoMeasurePlugin/Modules/FiveHelper.js +66 -0
- package/plugins/PanoMeasurePlugin/Modules/GuideController.d.ts +18 -0
- package/plugins/PanoMeasurePlugin/Modules/GuideController.js +107 -0
- package/plugins/PanoMeasurePlugin/Modules/Magnifier.d.ts +24 -0
- package/plugins/PanoMeasurePlugin/Modules/Magnifier.js +139 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/HTML.d.ts +6 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/HTML.js +26 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/MainBtnController.d.ts +18 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/MainBtnController.js +169 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/Revoke/index.d.ts +12 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/Revoke/index.js +59 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/index.d.ts +16 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/index.js +123 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/style.d.ts +17 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/style.js +103 -0
- package/plugins/PanoMeasurePlugin/index.d.ts +7 -0
- package/plugins/PanoMeasurePlugin/index.js +20 -0
- package/plugins/PanoMeasurePlugin/typings/data.d.ts +28 -0
- package/plugins/PanoMeasurePlugin/typings/data.js +7 -0
- package/plugins/PanoMeasurePlugin/typings/event.type.d.ts +28 -0
- package/plugins/PanoMeasurePlugin/typings/event.type.js +7 -0
- package/plugins/PanoMeasurePlugin/typings/utils.type.d.ts +1 -0
- package/plugins/PanoMeasurePlugin/typings/utils.type.js +7 -0
- package/plugins/PanoMeasurePlugin/utils/clearGroup.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/utils/clearGroup.js +16 -0
- package/plugins/PanoMeasurePlugin/utils/constants.d.ts +4 -0
- package/plugins/PanoMeasurePlugin/utils/constants.js +47 -0
- package/plugins/PanoMeasurePlugin/utils/distanceDom.d.ts +28 -0
- package/plugins/PanoMeasurePlugin/utils/distanceDom.js +147 -0
- package/plugins/PanoMeasurePlugin/utils/findAssociatedLines.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/utils/findAssociatedLines.js +37 -0
- package/plugins/PanoMeasurePlugin/utils/findClosestPoint.d.ts +10 -0
- package/plugins/PanoMeasurePlugin/utils/findClosestPoint.js +49 -0
- package/plugins/PanoMeasurePlugin/utils/getIntersectionFromEvent.d.ts +4 -0
- package/plugins/PanoMeasurePlugin/utils/getIntersectionFromEvent.js +20 -0
- package/plugins/PanoMeasurePlugin/utils/getPointFromHammerEvent.d.ts +10 -0
- package/plugins/PanoMeasurePlugin/utils/getPointFromHammerEvent.js +33 -0
- package/plugins/PanoMeasurePlugin/utils/ironbox.d.ts +1 -0
- package/plugins/PanoMeasurePlugin/utils/ironbox.js +14 -0
- package/plugins/PanoMeasurePlugin/utils/isNDCPointInScreen.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/utils/isNDCPointInScreen.js +16 -0
- package/plugins/PanoMeasurePlugin/utils/line.d.ts +17 -0
- package/plugins/PanoMeasurePlugin/utils/line.js +61 -0
- package/plugins/PanoMeasurePlugin/utils/math.d.ts +17 -0
- package/plugins/PanoMeasurePlugin/utils/math.js +57 -0
- package/plugins/PanoMeasurePlugin/utils/mouseGroup.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/utils/mouseGroup.js +42 -0
- package/plugins/PanoMeasurePlugin/utils/ndc2Screen.d.ts +5 -0
- package/plugins/PanoMeasurePlugin/utils/ndc2Screen.js +16 -0
- package/plugins/PanoRulerPlugin/index.d.ts +4 -0
- package/plugins/PanoRulerPlugin/index.js +6 -1
- package/plugins/PanoTVVideoPlugin/index.d.ts +2 -0
- package/plugins/PanoTVVideoPlugin/index.js +20 -14
- package/plugins/floorplan/ModelFloorplanPlugin/Controller.d.ts +5 -2
- package/plugins/floorplan/ModelFloorplanPlugin/Controller.js +22 -11
- package/plugins/floorplan/ModelFloorplanPlugin/components/Camera.js +4 -4
- package/plugins/floorplan/ModelFloorplanPlugin/components/Compass.js +5 -5
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomLabels.js +2 -2
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomMaterial.d.ts +11 -0
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomMaterial.js +174 -0
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RuleLabels.d.ts +8 -0
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RuleLabels.js +179 -0
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.d.ts +2 -0
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.js +14 -2
- package/plugins/floorplan/ModelFloorplanPlugin/components/index.d.ts +3 -0
- package/plugins/floorplan/ModelFloorplanPlugin/components/index.js +1 -1
- package/plugins/floorplan/ModelFloorplanPlugin/typings/utility.d.ts +2 -0
- package/plugins/floorplan/ModelFloorplanPlugin/typings/utility.js +7 -0
- package/plugins/floorplan/ModelFloorplanPlugin/utils/constant.d.ts +1 -1
- package/plugins/floorplan/ModelFloorplanPlugin/utils/constant.js +1 -1
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.js +1 -0
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.style.js +4 -4
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/ExtraObjects.js +2 -2
- package/plugins/floorplan/TopviewFloorplanPlugin/Controller.js +3 -3
- package/plugins/floorplan/index.d.ts +4 -0
- package/plugins/floorplan/index.js +13 -0
- package/plugins/floorplan/typings/floorplanData.d.ts +2 -0
- package/plugins/floorplan/typings/floorplanServerData.d.ts +2 -0
- package/plugins/floorplan/utils/formatData.js +2 -1
- package/shared-utils/changeModelCanvasOpacity.d.ts +2 -0
- package/shared-utils/{changeModelCanvansOpacity.js → changeModelCanvasOpacity.js} +2 -2
- package/shared-utils/removeArrayItem.d.ts +7 -0
- package/shared-utils/removeArrayItem.js +22 -0
- package/shared-utils/three/loadTexture.d.ts +2 -2
- package/shared-utils/three/loadTexture.js +21 -2
- package/typedoc/libs.d.ts +1 -0
- package/typedoc/libs.js +7 -0
- package/components/PBRView/index.d.ts +0 -14
- package/shared-utils/changeModelCanvansOpacity.d.ts +0 -2
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { GLTFViewer, GLTFViewerConfig } from '../../libs/gltf-viewer';
|
|
3
|
+
export declare type GLTFViewPropTypes = {
|
|
4
|
+
url: string;
|
|
5
|
+
className?: string;
|
|
6
|
+
refs?: (gltfViewer: GLTFViewer) => void;
|
|
7
|
+
} & GLTFViewerConfig;
|
|
8
|
+
/**
|
|
9
|
+
* **GLTFViewer** 预览 `glTF` 模型文件(支持.gltf和.glb格式),附带光照等效果。
|
|
10
|
+
*
|
|
11
|
+
* ### Usage
|
|
12
|
+
*
|
|
13
|
+
* 基础用法:
|
|
14
|
+
*
|
|
15
|
+
* ```jsx
|
|
16
|
+
* import { GLTFViewer } from '@realsee/dnalogel/libs/gltf-viewer'
|
|
17
|
+
*
|
|
18
|
+
* // 创建实例
|
|
19
|
+
* const gltfViewer = new GLTFViewer({
|
|
20
|
+
* pixelRatio: 1,
|
|
21
|
+
* })
|
|
22
|
+
*
|
|
23
|
+
* // 挂载至 DOM 节点
|
|
24
|
+
* gltfViewer.appendTo(ref.current)
|
|
25
|
+
*
|
|
26
|
+
* // 加载模型文件
|
|
27
|
+
* await gltfViewer.load(glbCDNUrl)
|
|
28
|
+
*
|
|
29
|
+
* // 输出当前模型状态数据
|
|
30
|
+
* console.log(gltfViewer.state)
|
|
31
|
+
* // { longitude: 0, latitude: -0.3, fov: 35 }
|
|
32
|
+
*
|
|
33
|
+
* // 设置当前模型状态:直接给状态对象赋值(立即生效)
|
|
34
|
+
* gltfViewer.state = { longitude: 0, latitude: -0.3, fov: 35 }
|
|
35
|
+
*
|
|
36
|
+
* // 设置当前模型状态:直接给状态对象单个属性赋值(立即生效)
|
|
37
|
+
* gltfViewer.state.fov = 50
|
|
38
|
+
*
|
|
39
|
+
* ```
|
|
40
|
+
*
|
|
41
|
+
* 事件监听:
|
|
42
|
+
*
|
|
43
|
+
* ```jsx
|
|
44
|
+
* gltfViewer.on('stateChange', (state: GLTFViewerState) => {
|
|
45
|
+
* // 事件:模型状态变化
|
|
46
|
+
* })
|
|
47
|
+
* gltfViewer.on('willLoad', () => {
|
|
48
|
+
* // 即将加载
|
|
49
|
+
* })
|
|
50
|
+
* gltfViewer.on('progressing', (progressing: number) => {
|
|
51
|
+
* // 加载进度
|
|
52
|
+
* })
|
|
53
|
+
* gltfViewer.on('loaded', (gltf: GLTF) => {
|
|
54
|
+
* // 加载完成
|
|
55
|
+
* })
|
|
56
|
+
* gltfViewer.on('loadError', (error) => {
|
|
57
|
+
* // 加载异常
|
|
58
|
+
* })
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* React 组件:
|
|
62
|
+
*
|
|
63
|
+
* ```jsx
|
|
64
|
+
* import { GLTFView } from '@realsee/dnalogel/components/GLTFView'
|
|
65
|
+
*
|
|
66
|
+
* <GLTFView
|
|
67
|
+
* url="//vrlab-static.ljcdn.com/release/web/demo.435f5fa2.glb"
|
|
68
|
+
* ref={(gltfViewer) => gltfViewer.on('stateChange', (state) => console.log(state))} />
|
|
69
|
+
* ```
|
|
70
|
+
*
|
|
71
|
+
* ### 动画
|
|
72
|
+
*
|
|
73
|
+
* `GLTFViewer` 默认不提供动画实现,但是你可以配合 [TWEEN.js](http://tweenjs.github.io/tween.js/docs/user_guide.html) 通过修改 `state` 来得到你想要的动画效果,比如:
|
|
74
|
+
*
|
|
75
|
+
* ```jsx
|
|
76
|
+
* import TWEEN from '@tweenjs/tween.js'
|
|
77
|
+
*
|
|
78
|
+
* function animate(time: number) {
|
|
79
|
+
* requestAnimationFrame(animate)
|
|
80
|
+
* TWEEN.update(time)
|
|
81
|
+
* }
|
|
82
|
+
*
|
|
83
|
+
* requestAnimationFrame(animate)
|
|
84
|
+
*
|
|
85
|
+
* const tween = new TWEEN.Tween({ fov: 35, longitude: 0, latitude: -0.3 })
|
|
86
|
+
* .to({fov: 60, latitude: -1.1496852156837822, longitude: 2.4468501085409855 }, 2000 )
|
|
87
|
+
* .easing(TWEEN.Easing.Quadratic.Out)
|
|
88
|
+
* .onUpdate((newState) => gltfViewer.state = newState)
|
|
89
|
+
* .start()
|
|
90
|
+
*
|
|
91
|
+
* ```
|
|
92
|
+
*
|
|
93
|
+
* ### 光照配置
|
|
94
|
+
*
|
|
95
|
+
* ```ts
|
|
96
|
+
* pointLight?: THREE.PointLight | false
|
|
97
|
+
* directionalLight?: THREE.DirectionalLight | false
|
|
98
|
+
* ambientLight?: THREE.AmbientLight | false
|
|
99
|
+
* ```
|
|
100
|
+
* 自带三种默认光照配置,你可以提供自己的光照实例。如果设置 `pointLight: false` 则禁用该光照效果。
|
|
101
|
+
*
|
|
102
|
+
*/
|
|
103
|
+
export declare const GLTFView: React.FC<GLTFViewPropTypes>;
|
|
104
|
+
export default GLTFView;
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
require("core-js/modules/es.array.iterator.js");
|
|
4
|
+
|
|
5
|
+
require("core-js/modules/es.object.to-string.js");
|
|
6
|
+
|
|
7
|
+
require("core-js/modules/es.string.iterator.js");
|
|
8
|
+
|
|
9
|
+
require("core-js/modules/es.weak-map.js");
|
|
10
|
+
|
|
11
|
+
require("core-js/modules/web.dom-collections.iterator.js");
|
|
12
|
+
|
|
13
|
+
require("core-js/modules/es.object.define-property.js");
|
|
14
|
+
|
|
15
|
+
require("core-js/modules/es.object.get-own-property-descriptor.js");
|
|
16
|
+
|
|
17
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
18
|
+
|
|
19
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
20
|
+
|
|
21
|
+
Object.defineProperty(exports, "__esModule", {
|
|
22
|
+
value: true
|
|
23
|
+
});
|
|
24
|
+
exports["default"] = exports.GLTFView = void 0;
|
|
25
|
+
|
|
26
|
+
var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
|
|
27
|
+
|
|
28
|
+
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
|
29
|
+
|
|
30
|
+
var React = _interopRequireWildcard(require("react"));
|
|
31
|
+
|
|
32
|
+
var _gltfViewer = require("../../libs/gltf-viewer");
|
|
33
|
+
|
|
34
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
35
|
+
|
|
36
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* **GLTFViewer** 预览 `glTF` 模型文件(支持.gltf和.glb格式),附带光照等效果。
|
|
40
|
+
*
|
|
41
|
+
* ### Usage
|
|
42
|
+
*
|
|
43
|
+
* 基础用法:
|
|
44
|
+
*
|
|
45
|
+
* ```jsx
|
|
46
|
+
* import { GLTFViewer } from '@realsee/dnalogel/libs/gltf-viewer'
|
|
47
|
+
*
|
|
48
|
+
* // 创建实例
|
|
49
|
+
* const gltfViewer = new GLTFViewer({
|
|
50
|
+
* pixelRatio: 1,
|
|
51
|
+
* })
|
|
52
|
+
*
|
|
53
|
+
* // 挂载至 DOM 节点
|
|
54
|
+
* gltfViewer.appendTo(ref.current)
|
|
55
|
+
*
|
|
56
|
+
* // 加载模型文件
|
|
57
|
+
* await gltfViewer.load(glbCDNUrl)
|
|
58
|
+
*
|
|
59
|
+
* // 输出当前模型状态数据
|
|
60
|
+
* console.log(gltfViewer.state)
|
|
61
|
+
* // { longitude: 0, latitude: -0.3, fov: 35 }
|
|
62
|
+
*
|
|
63
|
+
* // 设置当前模型状态:直接给状态对象赋值(立即生效)
|
|
64
|
+
* gltfViewer.state = { longitude: 0, latitude: -0.3, fov: 35 }
|
|
65
|
+
*
|
|
66
|
+
* // 设置当前模型状态:直接给状态对象单个属性赋值(立即生效)
|
|
67
|
+
* gltfViewer.state.fov = 50
|
|
68
|
+
*
|
|
69
|
+
* ```
|
|
70
|
+
*
|
|
71
|
+
* 事件监听:
|
|
72
|
+
*
|
|
73
|
+
* ```jsx
|
|
74
|
+
* gltfViewer.on('stateChange', (state: GLTFViewerState) => {
|
|
75
|
+
* // 事件:模型状态变化
|
|
76
|
+
* })
|
|
77
|
+
* gltfViewer.on('willLoad', () => {
|
|
78
|
+
* // 即将加载
|
|
79
|
+
* })
|
|
80
|
+
* gltfViewer.on('progressing', (progressing: number) => {
|
|
81
|
+
* // 加载进度
|
|
82
|
+
* })
|
|
83
|
+
* gltfViewer.on('loaded', (gltf: GLTF) => {
|
|
84
|
+
* // 加载完成
|
|
85
|
+
* })
|
|
86
|
+
* gltfViewer.on('loadError', (error) => {
|
|
87
|
+
* // 加载异常
|
|
88
|
+
* })
|
|
89
|
+
* ```
|
|
90
|
+
*
|
|
91
|
+
* React 组件:
|
|
92
|
+
*
|
|
93
|
+
* ```jsx
|
|
94
|
+
* import { GLTFView } from '@realsee/dnalogel/components/GLTFView'
|
|
95
|
+
*
|
|
96
|
+
* <GLTFView
|
|
97
|
+
* url="//vrlab-static.ljcdn.com/release/web/demo.435f5fa2.glb"
|
|
98
|
+
* ref={(gltfViewer) => gltfViewer.on('stateChange', (state) => console.log(state))} />
|
|
99
|
+
* ```
|
|
100
|
+
*
|
|
101
|
+
* ### 动画
|
|
102
|
+
*
|
|
103
|
+
* `GLTFViewer` 默认不提供动画实现,但是你可以配合 [TWEEN.js](http://tweenjs.github.io/tween.js/docs/user_guide.html) 通过修改 `state` 来得到你想要的动画效果,比如:
|
|
104
|
+
*
|
|
105
|
+
* ```jsx
|
|
106
|
+
* import TWEEN from '@tweenjs/tween.js'
|
|
107
|
+
*
|
|
108
|
+
* function animate(time: number) {
|
|
109
|
+
* requestAnimationFrame(animate)
|
|
110
|
+
* TWEEN.update(time)
|
|
111
|
+
* }
|
|
112
|
+
*
|
|
113
|
+
* requestAnimationFrame(animate)
|
|
114
|
+
*
|
|
115
|
+
* const tween = new TWEEN.Tween({ fov: 35, longitude: 0, latitude: -0.3 })
|
|
116
|
+
* .to({fov: 60, latitude: -1.1496852156837822, longitude: 2.4468501085409855 }, 2000 )
|
|
117
|
+
* .easing(TWEEN.Easing.Quadratic.Out)
|
|
118
|
+
* .onUpdate((newState) => gltfViewer.state = newState)
|
|
119
|
+
* .start()
|
|
120
|
+
*
|
|
121
|
+
* ```
|
|
122
|
+
*
|
|
123
|
+
* ### 光照配置
|
|
124
|
+
*
|
|
125
|
+
* ```ts
|
|
126
|
+
* pointLight?: THREE.PointLight | false
|
|
127
|
+
* directionalLight?: THREE.DirectionalLight | false
|
|
128
|
+
* ambientLight?: THREE.AmbientLight | false
|
|
129
|
+
* ```
|
|
130
|
+
* 自带三种默认光照配置,你可以提供自己的光照实例。如果设置 `pointLight: false` 则禁用该光照效果。
|
|
131
|
+
*
|
|
132
|
+
*/
|
|
133
|
+
var GLTFView = function GLTFView(props) {
|
|
134
|
+
var ref = React.useRef(null);
|
|
135
|
+
React.useEffect(function () {
|
|
136
|
+
if (!ref.current) return;
|
|
137
|
+
var gltfViewer = new _gltfViewer.GLTFViewer(props);
|
|
138
|
+
gltfViewer.appendTo(ref.current);
|
|
139
|
+
|
|
140
|
+
var callback = /*#__PURE__*/function () {
|
|
141
|
+
var _ref = (0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee() {
|
|
142
|
+
return _regenerator["default"].wrap(function _callee$(_context) {
|
|
143
|
+
while (1) {
|
|
144
|
+
switch (_context.prev = _context.next) {
|
|
145
|
+
case 0:
|
|
146
|
+
_context.next = 2;
|
|
147
|
+
return gltfViewer.load(props.url);
|
|
148
|
+
|
|
149
|
+
case 2:
|
|
150
|
+
case "end":
|
|
151
|
+
return _context.stop();
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}, _callee);
|
|
155
|
+
}));
|
|
156
|
+
|
|
157
|
+
return function callback() {
|
|
158
|
+
return _ref.apply(this, arguments);
|
|
159
|
+
};
|
|
160
|
+
}();
|
|
161
|
+
|
|
162
|
+
callback(); // 实例
|
|
163
|
+
|
|
164
|
+
if (props.refs) {
|
|
165
|
+
props.refs(gltfViewer);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
return function () {
|
|
169
|
+
gltfViewer.dispose();
|
|
170
|
+
};
|
|
171
|
+
}, []);
|
|
172
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
173
|
+
className: 'GLTFView ' + (props.className || ''),
|
|
174
|
+
ref: ref
|
|
175
|
+
});
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
exports.GLTFView = GLTFView;
|
|
179
|
+
GLTFView.defaultProps = {};
|
|
180
|
+
var _default = GLTFView;
|
|
181
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export declare const work: {
|
|
2
|
+
_signature: string;
|
|
3
|
+
allow_hosts: string[];
|
|
4
|
+
base_url: string;
|
|
5
|
+
certificate: string;
|
|
6
|
+
create_time: null;
|
|
7
|
+
expire_at: string;
|
|
8
|
+
initial: {
|
|
9
|
+
fov: number;
|
|
10
|
+
latitude: number;
|
|
11
|
+
longitude: number;
|
|
12
|
+
pano_index: number;
|
|
13
|
+
recordVideo: boolean;
|
|
14
|
+
};
|
|
15
|
+
model: {
|
|
16
|
+
file_url: string;
|
|
17
|
+
material_base_url: string;
|
|
18
|
+
material_textures: string[];
|
|
19
|
+
};
|
|
20
|
+
observers: {
|
|
21
|
+
accessible_nodes: number[];
|
|
22
|
+
create_time: string;
|
|
23
|
+
floor_index: number;
|
|
24
|
+
id: number;
|
|
25
|
+
index: number;
|
|
26
|
+
position: number[];
|
|
27
|
+
quaternion: {
|
|
28
|
+
w: number;
|
|
29
|
+
x: number;
|
|
30
|
+
y: number;
|
|
31
|
+
z: number;
|
|
32
|
+
};
|
|
33
|
+
standing_position: number[];
|
|
34
|
+
visible_nodes: number[];
|
|
35
|
+
}[];
|
|
36
|
+
panorama: {
|
|
37
|
+
count: number;
|
|
38
|
+
list: {
|
|
39
|
+
back: string;
|
|
40
|
+
down: string;
|
|
41
|
+
front: string;
|
|
42
|
+
index: number;
|
|
43
|
+
left: string;
|
|
44
|
+
right: string;
|
|
45
|
+
up: string;
|
|
46
|
+
}[];
|
|
47
|
+
};
|
|
48
|
+
picture_url: string;
|
|
49
|
+
};
|