@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.
Files changed (151) hide show
  1. package/components/GLTFView/index.d.ts +104 -0
  2. package/components/GLTFView/index.js +181 -0
  3. package/data/81zxMaeVKLQU93OZMG.d.ts +49 -0
  4. package/data/81zxMaeVKLQU93OZMG.js +633 -0
  5. package/data/PrXel3aqGbp34JQn.js +139 -1
  6. package/data/vLykj3NWrllMrG06.js +335 -71
  7. package/libs/gltf-viewer/Subscribe.d.ts +76 -0
  8. package/libs/gltf-viewer/Subscribe.js +231 -0
  9. package/libs/gltf-viewer/coordsMoveByOffset.d.ts +13 -0
  10. package/libs/gltf-viewer/coordsMoveByOffset.js +22 -0
  11. package/libs/gltf-viewer/coordsToDirection.d.ts +5 -0
  12. package/{components/PBRView/index.js → libs/gltf-viewer/coordsToDirection.js} +14 -18
  13. package/libs/gltf-viewer/formatRad.d.ts +1 -0
  14. package/libs/gltf-viewer/formatRad.js +13 -0
  15. package/libs/gltf-viewer/getFrameTime.d.ts +1 -0
  16. package/libs/gltf-viewer/getFrameTime.js +28 -0
  17. package/libs/gltf-viewer/index.d.ts +69 -0
  18. package/libs/gltf-viewer/index.js +744 -0
  19. package/libs/gltf-viewer/mouseWheel.d.ts +2 -0
  20. package/libs/gltf-viewer/mouseWheel.js +59 -0
  21. package/libs/gltf-viewer/requestAnimationFrame.d.ts +1 -0
  22. package/libs/gltf-viewer/requestAnimationFrame.js +18 -0
  23. package/libs/gltf-viewer/requestAnimationFrameInterval.d.ts +1 -0
  24. package/libs/gltf-viewer/requestAnimationFrameInterval.js +31 -0
  25. package/libs/gltf-viewer/uuid.d.ts +4 -0
  26. package/libs/gltf-viewer/uuid.js +28 -0
  27. package/package.json +5 -4
  28. package/plugins/ModelEntryDoorGuidePlugin/index.d.ts +6 -2
  29. package/plugins/ModelEntryDoorGuidePlugin/index.js +22 -14
  30. package/plugins/ModelRoomLabelPlugin/Controller.js +1 -0
  31. package/plugins/ModelRoomLabelPlugin/RoomLabelItem.js +5 -5
  32. package/plugins/ModelRoomLabelPlugin/index.d.ts +4 -0
  33. package/plugins/ModelRoomLabelPlugin/index.js +7 -2
  34. package/plugins/PanoMaskSelectorPlugin/createBox.js +3 -0
  35. package/plugins/PanoMaskSelectorPlugin/index.js +3 -1
  36. package/plugins/PanoMeasurePlugin/Controller/BaseController.d.ts +36 -0
  37. package/plugins/PanoMeasurePlugin/Controller/BaseController.js +103 -0
  38. package/plugins/PanoMeasurePlugin/Controller/EditController.d.ts +52 -0
  39. package/plugins/PanoMeasurePlugin/Controller/EditController.js +341 -0
  40. package/plugins/PanoMeasurePlugin/Controller/ShortcutKeyController.d.ts +12 -0
  41. package/plugins/PanoMeasurePlugin/Controller/ShortcutKeyController.js +69 -0
  42. package/plugins/PanoMeasurePlugin/Controller/WatchController.d.ts +25 -0
  43. package/plugins/PanoMeasurePlugin/Controller/WatchController.js +371 -0
  44. package/plugins/PanoMeasurePlugin/Controller/index.d.ts +61 -0
  45. package/plugins/PanoMeasurePlugin/Controller/index.js +230 -0
  46. package/plugins/PanoMeasurePlugin/Model/index.d.ts +38 -0
  47. package/plugins/PanoMeasurePlugin/Model/index.js +235 -0
  48. package/plugins/PanoMeasurePlugin/Model/line.d.ts +30 -0
  49. package/plugins/PanoMeasurePlugin/Model/line.js +121 -0
  50. package/plugins/PanoMeasurePlugin/Model/point.d.ts +16 -0
  51. package/plugins/PanoMeasurePlugin/Model/point.js +68 -0
  52. package/plugins/PanoMeasurePlugin/Model/polyline.d.ts +16 -0
  53. package/plugins/PanoMeasurePlugin/Model/polyline.js +109 -0
  54. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete.svg.d.ts +2 -0
  55. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete.svg.js +11 -0
  56. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_bg.png.d.ts +2 -0
  57. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_bg.png.js +11 -0
  58. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_hover_bg.png.d.ts +2 -0
  59. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_hover_bg.png.js +11 -0
  60. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/index.d.ts +22 -0
  61. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/index.js +182 -0
  62. package/plugins/PanoMeasurePlugin/Modules/FiveHelper.d.ts +11 -0
  63. package/plugins/PanoMeasurePlugin/Modules/FiveHelper.js +66 -0
  64. package/plugins/PanoMeasurePlugin/Modules/GuideController.d.ts +18 -0
  65. package/plugins/PanoMeasurePlugin/Modules/GuideController.js +107 -0
  66. package/plugins/PanoMeasurePlugin/Modules/Magnifier.d.ts +24 -0
  67. package/plugins/PanoMeasurePlugin/Modules/Magnifier.js +139 -0
  68. package/plugins/PanoMeasurePlugin/Modules/UIController/HTML.d.ts +6 -0
  69. package/plugins/PanoMeasurePlugin/Modules/UIController/HTML.js +26 -0
  70. package/plugins/PanoMeasurePlugin/Modules/UIController/MainBtnController.d.ts +18 -0
  71. package/plugins/PanoMeasurePlugin/Modules/UIController/MainBtnController.js +169 -0
  72. package/plugins/PanoMeasurePlugin/Modules/UIController/Revoke/index.d.ts +12 -0
  73. package/plugins/PanoMeasurePlugin/Modules/UIController/Revoke/index.js +59 -0
  74. package/plugins/PanoMeasurePlugin/Modules/UIController/index.d.ts +16 -0
  75. package/plugins/PanoMeasurePlugin/Modules/UIController/index.js +123 -0
  76. package/plugins/PanoMeasurePlugin/Modules/UIController/style.d.ts +17 -0
  77. package/plugins/PanoMeasurePlugin/Modules/UIController/style.js +103 -0
  78. package/plugins/PanoMeasurePlugin/index.d.ts +7 -0
  79. package/plugins/PanoMeasurePlugin/index.js +20 -0
  80. package/plugins/PanoMeasurePlugin/typings/data.d.ts +28 -0
  81. package/plugins/PanoMeasurePlugin/typings/data.js +7 -0
  82. package/plugins/PanoMeasurePlugin/typings/event.type.d.ts +28 -0
  83. package/plugins/PanoMeasurePlugin/typings/event.type.js +7 -0
  84. package/plugins/PanoMeasurePlugin/typings/utils.type.d.ts +1 -0
  85. package/plugins/PanoMeasurePlugin/typings/utils.type.js +7 -0
  86. package/plugins/PanoMeasurePlugin/utils/clearGroup.d.ts +2 -0
  87. package/plugins/PanoMeasurePlugin/utils/clearGroup.js +16 -0
  88. package/plugins/PanoMeasurePlugin/utils/constants.d.ts +4 -0
  89. package/plugins/PanoMeasurePlugin/utils/constants.js +47 -0
  90. package/plugins/PanoMeasurePlugin/utils/distanceDom.d.ts +28 -0
  91. package/plugins/PanoMeasurePlugin/utils/distanceDom.js +147 -0
  92. package/plugins/PanoMeasurePlugin/utils/findAssociatedLines.d.ts +2 -0
  93. package/plugins/PanoMeasurePlugin/utils/findAssociatedLines.js +37 -0
  94. package/plugins/PanoMeasurePlugin/utils/findClosestPoint.d.ts +10 -0
  95. package/plugins/PanoMeasurePlugin/utils/findClosestPoint.js +49 -0
  96. package/plugins/PanoMeasurePlugin/utils/getIntersectionFromEvent.d.ts +4 -0
  97. package/plugins/PanoMeasurePlugin/utils/getIntersectionFromEvent.js +20 -0
  98. package/plugins/PanoMeasurePlugin/utils/getPointFromHammerEvent.d.ts +10 -0
  99. package/plugins/PanoMeasurePlugin/utils/getPointFromHammerEvent.js +33 -0
  100. package/plugins/PanoMeasurePlugin/utils/ironbox.d.ts +1 -0
  101. package/plugins/PanoMeasurePlugin/utils/ironbox.js +14 -0
  102. package/plugins/PanoMeasurePlugin/utils/isNDCPointInScreen.d.ts +2 -0
  103. package/plugins/PanoMeasurePlugin/utils/isNDCPointInScreen.js +16 -0
  104. package/plugins/PanoMeasurePlugin/utils/line.d.ts +17 -0
  105. package/plugins/PanoMeasurePlugin/utils/line.js +61 -0
  106. package/plugins/PanoMeasurePlugin/utils/math.d.ts +17 -0
  107. package/plugins/PanoMeasurePlugin/utils/math.js +57 -0
  108. package/plugins/PanoMeasurePlugin/utils/mouseGroup.d.ts +2 -0
  109. package/plugins/PanoMeasurePlugin/utils/mouseGroup.js +42 -0
  110. package/plugins/PanoMeasurePlugin/utils/ndc2Screen.d.ts +5 -0
  111. package/plugins/PanoMeasurePlugin/utils/ndc2Screen.js +16 -0
  112. package/plugins/PanoRulerPlugin/index.d.ts +4 -0
  113. package/plugins/PanoRulerPlugin/index.js +6 -1
  114. package/plugins/PanoTVVideoPlugin/index.d.ts +2 -0
  115. package/plugins/PanoTVVideoPlugin/index.js +20 -14
  116. package/plugins/floorplan/ModelFloorplanPlugin/Controller.d.ts +5 -2
  117. package/plugins/floorplan/ModelFloorplanPlugin/Controller.js +22 -11
  118. package/plugins/floorplan/ModelFloorplanPlugin/components/Camera.js +4 -4
  119. package/plugins/floorplan/ModelFloorplanPlugin/components/Compass.js +5 -5
  120. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomLabels.js +2 -2
  121. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomMaterial.d.ts +11 -0
  122. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomMaterial.js +174 -0
  123. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RuleLabels.d.ts +8 -0
  124. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RuleLabels.js +179 -0
  125. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.d.ts +2 -0
  126. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.js +14 -2
  127. package/plugins/floorplan/ModelFloorplanPlugin/components/index.d.ts +3 -0
  128. package/plugins/floorplan/ModelFloorplanPlugin/components/index.js +1 -1
  129. package/plugins/floorplan/ModelFloorplanPlugin/typings/utility.d.ts +2 -0
  130. package/plugins/floorplan/ModelFloorplanPlugin/typings/utility.js +7 -0
  131. package/plugins/floorplan/ModelFloorplanPlugin/utils/constant.d.ts +1 -1
  132. package/plugins/floorplan/ModelFloorplanPlugin/utils/constant.js +1 -1
  133. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.js +1 -0
  134. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.style.js +4 -4
  135. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/ExtraObjects.js +2 -2
  136. package/plugins/floorplan/TopviewFloorplanPlugin/Controller.js +3 -3
  137. package/plugins/floorplan/index.d.ts +4 -0
  138. package/plugins/floorplan/index.js +13 -0
  139. package/plugins/floorplan/typings/floorplanData.d.ts +2 -0
  140. package/plugins/floorplan/typings/floorplanServerData.d.ts +2 -0
  141. package/plugins/floorplan/utils/formatData.js +2 -1
  142. package/shared-utils/changeModelCanvasOpacity.d.ts +2 -0
  143. package/shared-utils/{changeModelCanvansOpacity.js → changeModelCanvasOpacity.js} +2 -2
  144. package/shared-utils/removeArrayItem.d.ts +7 -0
  145. package/shared-utils/removeArrayItem.js +22 -0
  146. package/shared-utils/three/loadTexture.d.ts +2 -2
  147. package/shared-utils/three/loadTexture.js +21 -2
  148. package/typedoc/libs.d.ts +1 -0
  149. package/typedoc/libs.js +7 -0
  150. package/components/PBRView/index.d.ts +0 -14
  151. package/shared-utils/changeModelCanvansOpacity.d.ts +0 -2
@@ -0,0 +1,633 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.object.define-property.js");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.work = void 0;
9
+ var work = {
10
+ _signature: 'guM/S06kwtk0CDepXl393V3edFi1A7OKKBrd086r7ohKofXk13Rut9a7S2hZDXpuFv3xHAT/9MUUT2vyhEAY7zjLCa+jB2OTr/KtllWa6yVM3PZfNBLB3rlklBKR+VtqxjW6//0coB0fwncNMLfZOA6NY5p3b16U+2L1tEaGmx0=',
11
+ allow_hosts: ['*'],
12
+ base_url: 'https://vrlab-public.ljcdn.com/',
13
+ certificate: '-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----',
14
+ create_time: null,
15
+ expire_at: '1957761348995',
16
+ initial: {
17
+ fov: 110,
18
+ latitude: 0,
19
+ longitude: 1.499647315445733,
20
+ pano_index: 9,
21
+ recordVideo: false
22
+ },
23
+ model: {
24
+ file_url: 'vrframework/release/ue4_decoration_plan/zxMaeVKLQU93OZMG/vrproc-ue4/render/model.at3d',
25
+ material_base_url: 'https://test-vr-public.realsee-cdn.com/',
26
+ material_textures: ['test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_0.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_1.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_2.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_3.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_4.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_5.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_6.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_7.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_8.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_9.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_10.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_11.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_12.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_13.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_14.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_15.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_16.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_17.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_18.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_19.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_20.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_21.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_22.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_23.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_24.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_25.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_26.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_27.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_28.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_29.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_30.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_31.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_32.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_33.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_34.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_35.jpg', 'test/ue4/b8aef3c698356388299594e726c5b15d/at3d_results/texture_36.jpg']
27
+ },
28
+ observers: [{
29
+ accessible_nodes: [6, 10, 14, 19, 20, 23],
30
+ create_time: '',
31
+ floor_index: 0,
32
+ id: 0,
33
+ index: 0,
34
+ position: [-0.947504, 1.2, -1.398092],
35
+ quaternion: {
36
+ w: 0.7071067811865475,
37
+ x: 0,
38
+ y: 0.7071067811865475,
39
+ z: 0
40
+ },
41
+ standing_position: [-0.947504, 0, -1.398092],
42
+ visible_nodes: [6, 10, 14, 19, 20, 23]
43
+ }, {
44
+ accessible_nodes: [5, 6, 9, 11, 13, 15, 16, 19, 22, 23],
45
+ create_time: '',
46
+ floor_index: 0,
47
+ id: 0,
48
+ index: 1,
49
+ position: [-2.052143, 1.2, -1.614287],
50
+ quaternion: {
51
+ w: 0.7071067811865475,
52
+ x: 0,
53
+ y: 0.7071067811865475,
54
+ z: 0
55
+ },
56
+ standing_position: [-2.052143, 0, -1.614287],
57
+ visible_nodes: [5, 6, 9, 11, 13, 15, 16, 19, 22, 23]
58
+ }, {
59
+ accessible_nodes: [4, 5, 9, 15, 16, 17, 18, 24, 25],
60
+ create_time: '',
61
+ floor_index: 0,
62
+ id: 0,
63
+ index: 2,
64
+ position: [-0.375493, 1.2, -5.37362],
65
+ quaternion: {
66
+ w: 0.7071067811865475,
67
+ x: 0,
68
+ y: 0.7071067811865475,
69
+ z: 0
70
+ },
71
+ standing_position: [-0.375493, 0, -5.37362],
72
+ visible_nodes: [4, 5, 9, 15, 16, 17, 18, 24, 25]
73
+ }, {
74
+ accessible_nodes: [11, 21],
75
+ create_time: '',
76
+ floor_index: 0,
77
+ id: 0,
78
+ index: 3,
79
+ position: [0.298587, 1.2, -2.606489],
80
+ quaternion: {
81
+ w: 0.7071067811865475,
82
+ x: 0,
83
+ y: 0.7071067811865475,
84
+ z: 0
85
+ },
86
+ standing_position: [0.298587, 0, -2.606489],
87
+ visible_nodes: [11, 21]
88
+ }, {
89
+ accessible_nodes: [2, 5, 9, 11, 15, 16, 17, 18, 25],
90
+ create_time: '',
91
+ floor_index: 0,
92
+ id: 0,
93
+ index: 4,
94
+ position: [-3.950001, 1.2, -6.150001],
95
+ quaternion: {
96
+ w: 0.7071067811865475,
97
+ x: 0,
98
+ y: 0.7071067811865475,
99
+ z: 0
100
+ },
101
+ standing_position: [-3.950001, 0, -6.150001],
102
+ visible_nodes: [2, 5, 9, 11, 15, 16, 17, 18, 25]
103
+ }, {
104
+ accessible_nodes: [1, 2, 4, 7, 8, 9, 11, 15, 16, 17, 18, 22, 24, 25],
105
+ create_time: '',
106
+ floor_index: 0,
107
+ id: 0,
108
+ index: 5,
109
+ position: [-0.913477, 1.2, -7.694327],
110
+ quaternion: {
111
+ w: 0.7071067811865475,
112
+ x: 0,
113
+ y: 0.7071067811865475,
114
+ z: 0
115
+ },
116
+ standing_position: [-0.913477, 0, -7.694327],
117
+ visible_nodes: [1, 2, 4, 7, 8, 9, 11, 15, 16, 17, 18, 22, 24, 25]
118
+ }, {
119
+ accessible_nodes: [0, 1, 5, 11, 15, 16, 19, 22],
120
+ create_time: '',
121
+ floor_index: 0,
122
+ id: 0,
123
+ index: 6,
124
+ position: [-2.308512, 1.2, 0.638652],
125
+ quaternion: {
126
+ w: 0.7071067811865475,
127
+ x: 0,
128
+ y: 0.7071067811865475,
129
+ z: 0
130
+ },
131
+ standing_position: [-2.308512, 0, 0.638652],
132
+ visible_nodes: [0, 1, 5, 11, 15, 16, 19, 22]
133
+ }, {
134
+ accessible_nodes: [5, 8, 24],
135
+ create_time: '',
136
+ floor_index: 0,
137
+ id: 0,
138
+ index: 7,
139
+ position: [-2.940375, 1.2, -7.585725],
140
+ quaternion: {
141
+ w: 0.7071067811865475,
142
+ x: 0,
143
+ y: 0.7071067811865475,
144
+ z: 0
145
+ },
146
+ standing_position: [-2.940375, 0, -7.585725],
147
+ visible_nodes: [5, 8, 24]
148
+ }, {
149
+ accessible_nodes: [5, 7, 24],
150
+ create_time: '',
151
+ floor_index: 0,
152
+ id: 0,
153
+ index: 8,
154
+ position: [-4.270881, 1.2, -7.561524],
155
+ quaternion: {
156
+ w: 0.7071067811865475,
157
+ x: 0,
158
+ y: 0.7071067811865475,
159
+ z: 0
160
+ },
161
+ standing_position: [-4.270881, 0, -7.561524],
162
+ visible_nodes: [5, 7, 24]
163
+ }, {
164
+ accessible_nodes: [2, 4, 5, 11, 15, 16, 17, 18, 24, 25],
165
+ create_time: '',
166
+ floor_index: 0,
167
+ id: 0,
168
+ index: 9,
169
+ position: [-1.003104, 1.2, -6.182765],
170
+ quaternion: {
171
+ w: 0.7071067811865475,
172
+ x: 0,
173
+ y: 0.7071067811865475,
174
+ z: 0
175
+ },
176
+ standing_position: [-1.003104, 0, -6.182765],
177
+ visible_nodes: [2, 4, 5, 11, 15, 16, 17, 18, 24, 25]
178
+ }, {
179
+ accessible_nodes: [0, 4, 14, 20, 23],
180
+ create_time: '',
181
+ floor_index: 0,
182
+ id: 0,
183
+ index: 10,
184
+ position: [0.734041, 1.2, 3.298226],
185
+ quaternion: {
186
+ w: 0.7071067811865475,
187
+ x: 0,
188
+ y: 0.7071067811865475,
189
+ z: 0
190
+ },
191
+ standing_position: [0.734041, 0, 3.298226],
192
+ visible_nodes: [0, 4, 14, 20, 23]
193
+ }, {
194
+ accessible_nodes: [1, 2, 3, 4, 5, 6, 9, 15, 16, 19, 21, 22],
195
+ create_time: '',
196
+ floor_index: 0,
197
+ id: 0,
198
+ index: 11,
199
+ position: [-2.056818, 1.2, -2.788902],
200
+ quaternion: {
201
+ w: 0.7071067811865475,
202
+ x: 0,
203
+ y: 0.7071067811865475,
204
+ z: 0
205
+ },
206
+ standing_position: [-2.056818, 0, -2.788902],
207
+ visible_nodes: [1, 2, 3, 4, 5, 6, 9, 15, 16, 19, 21, 22]
208
+ }, {
209
+ accessible_nodes: [1, 13, 20],
210
+ create_time: '',
211
+ floor_index: 0,
212
+ id: 0,
213
+ index: 12,
214
+ position: [-4.693264, 1.2, -1.01454],
215
+ quaternion: {
216
+ w: 0.7071067811865475,
217
+ x: 0,
218
+ y: 0.7071067811865475,
219
+ z: 0
220
+ },
221
+ standing_position: [-4.693264, 0, -1.01454],
222
+ visible_nodes: [1, 13, 20]
223
+ }, {
224
+ accessible_nodes: [1, 12, 19, 20, 21],
225
+ create_time: '',
226
+ floor_index: 0,
227
+ id: 0,
228
+ index: 13,
229
+ position: [-3.316796, 1.2, -1.028055],
230
+ quaternion: {
231
+ w: 0.7071067811865475,
232
+ x: 0,
233
+ y: 0.7071067811865475,
234
+ z: 0
235
+ },
236
+ standing_position: [-3.316796, 0, -1.028055],
237
+ visible_nodes: [1, 12, 19, 20, 21]
238
+ }, {
239
+ accessible_nodes: [0, 10, 20, 23],
240
+ create_time: '',
241
+ floor_index: 0,
242
+ id: 0,
243
+ index: 14,
244
+ position: [-0.473445, 1.2, 1.394685],
245
+ quaternion: {
246
+ w: 0.7071067811865475,
247
+ x: 0,
248
+ y: 0.7071067811865475,
249
+ z: 0
250
+ },
251
+ standing_position: [-0.473445, 0, 1.394685],
252
+ visible_nodes: [0, 10, 20, 23]
253
+ }, {
254
+ accessible_nodes: [1, 2, 4, 5, 6, 9, 11, 16, 17, 18, 19, 22, 25],
255
+ create_time: '',
256
+ floor_index: 0,
257
+ id: 0,
258
+ index: 15,
259
+ position: [-2.04216, 1.2, -5.190287],
260
+ quaternion: {
261
+ w: 0.7071067811865475,
262
+ x: 0,
263
+ y: 0.7071067811865475,
264
+ z: 0
265
+ },
266
+ standing_position: [-2.04216, 0, -5.190287],
267
+ visible_nodes: [1, 2, 4, 5, 6, 9, 11, 16, 17, 18, 19, 22, 25]
268
+ }, {
269
+ accessible_nodes: [1, 2, 4, 5, 6, 9, 11, 15, 17, 18, 19, 22, 25],
270
+ create_time: '',
271
+ floor_index: 0,
272
+ id: 0,
273
+ index: 16,
274
+ position: [-2.04216, 1.2, -4.140287],
275
+ quaternion: {
276
+ w: 0.7071067811865475,
277
+ x: 0,
278
+ y: 0.7071067811865475,
279
+ z: 0
280
+ },
281
+ standing_position: [-2.04216, 0, -4.140287],
282
+ visible_nodes: [1, 2, 4, 5, 6, 9, 11, 15, 17, 18, 19, 22, 25]
283
+ }, {
284
+ accessible_nodes: [2, 4, 7, 9, 15, 16, 18, 24, 25],
285
+ create_time: '',
286
+ floor_index: 0,
287
+ id: 0,
288
+ index: 17,
289
+ position: [1.374507, 1.2, -6.42362],
290
+ quaternion: {
291
+ w: 0.7071067811865475,
292
+ x: 0,
293
+ y: 0.7071067811865475,
294
+ z: 0
295
+ },
296
+ standing_position: [1.374507, 0, -6.42362],
297
+ visible_nodes: [2, 4, 7, 9, 15, 16, 18, 24, 25]
298
+ }, {
299
+ accessible_nodes: [2, 4, 5, 9, 15, 16, 17, 24, 25],
300
+ create_time: '',
301
+ floor_index: 0,
302
+ id: 0,
303
+ index: 18,
304
+ position: [1.374507, 1.2, -5.37362],
305
+ quaternion: {
306
+ w: 0.7071067811865475,
307
+ x: 0,
308
+ y: 0.7071067811865475,
309
+ z: 0
310
+ },
311
+ standing_position: [1.374507, 0, -5.37362],
312
+ visible_nodes: [2, 4, 5, 9, 15, 16, 17, 24, 25]
313
+ }, {
314
+ accessible_nodes: [0, 1, 6, 11, 13, 15, 16, 20, 22],
315
+ create_time: '',
316
+ floor_index: 0,
317
+ id: 0,
318
+ index: 19,
319
+ position: [-2.102217, 1.2, -0.49989],
320
+ quaternion: {
321
+ w: 0.7071067811865475,
322
+ x: 0,
323
+ y: 0.7071067811865475,
324
+ z: 0
325
+ },
326
+ standing_position: [-2.102217, 0, -0.49989],
327
+ visible_nodes: [0, 1, 6, 11, 13, 15, 16, 20, 22]
328
+ }, {
329
+ accessible_nodes: [0, 1, 10, 13, 14, 19, 23],
330
+ create_time: '',
331
+ floor_index: 0,
332
+ id: 0,
333
+ index: 20,
334
+ position: [-0.532618, 1.2, -0.235537],
335
+ quaternion: {
336
+ w: 0.7071067811865475,
337
+ x: 0,
338
+ y: 0.7071067811865475,
339
+ z: 0
340
+ },
341
+ standing_position: [-0.532618, 0, -0.235537],
342
+ visible_nodes: [0, 1, 10, 13, 14, 19, 23]
343
+ }, {
344
+ accessible_nodes: [1, 3, 11, 13],
345
+ create_time: '',
346
+ floor_index: 0,
347
+ id: 0,
348
+ index: 21,
349
+ position: [-0.915097, 1.2, -2.567557],
350
+ quaternion: {
351
+ w: 0.7071067811865475,
352
+ x: 0,
353
+ y: 0.7071067811865475,
354
+ z: 0
355
+ },
356
+ standing_position: [-0.915097, 0, -2.567557],
357
+ visible_nodes: [1, 3, 11, 13]
358
+ }, {
359
+ accessible_nodes: [1, 5, 6, 11, 15, 16, 19],
360
+ create_time: '',
361
+ floor_index: 0,
362
+ id: 0,
363
+ index: 22,
364
+ position: [-2.600988, 1.2, 1.673792],
365
+ quaternion: {
366
+ w: 0.7071067811865475,
367
+ x: 0,
368
+ y: 0.7071067811865475,
369
+ z: 0
370
+ },
371
+ standing_position: [-2.600988, 0, 1.673792],
372
+ visible_nodes: [1, 5, 6, 11, 15, 16, 19]
373
+ }, {
374
+ accessible_nodes: [0, 1, 10, 14, 20],
375
+ create_time: '',
376
+ floor_index: 0,
377
+ id: 0,
378
+ index: 23,
379
+ position: [0.451363, 1.2, 2.277164],
380
+ quaternion: {
381
+ w: 0.7071067811865475,
382
+ x: 0,
383
+ y: 0.7071067811865475,
384
+ z: 0
385
+ },
386
+ standing_position: [0.451363, 0, 2.277164],
387
+ visible_nodes: [0, 1, 10, 14, 20]
388
+ }, {
389
+ accessible_nodes: [2, 5, 7, 8, 9, 17, 18],
390
+ create_time: '',
391
+ floor_index: 0,
392
+ id: 0,
393
+ index: 24,
394
+ position: [-2.119771, 1.2, -8.1661],
395
+ quaternion: {
396
+ w: 0.7071067811865475,
397
+ x: 0,
398
+ y: 0.7071067811865475,
399
+ z: 0
400
+ },
401
+ standing_position: [-2.119771, 0, -8.1661],
402
+ visible_nodes: [2, 5, 7, 8, 9, 17, 18]
403
+ }, {
404
+ accessible_nodes: [2, 4, 5, 9, 15, 16, 17, 18],
405
+ create_time: '',
406
+ floor_index: 0,
407
+ id: 0,
408
+ index: 25,
409
+ position: [-4.964643, 1.21, -4.54174],
410
+ quaternion: {
411
+ w: 0.7071067811865475,
412
+ x: 0,
413
+ y: 0.7071067811865475,
414
+ z: 0
415
+ },
416
+ standing_position: [-4.964643, 0.01, -4.54174],
417
+ visible_nodes: [2, 4, 5, 9, 15, 16, 17, 18]
418
+ }],
419
+ panorama: {
420
+ count: 26,
421
+ list: [{
422
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/0/0_b.jpg',
423
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/0/0_d.jpg',
424
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/0/0_f.jpg',
425
+ index: 0,
426
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/0/0_l.jpg',
427
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/0/0_r.jpg',
428
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/0/0_u.jpg'
429
+ }, {
430
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/1/1_b.jpg',
431
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/1/1_d.jpg',
432
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/1/1_f.jpg',
433
+ index: 1,
434
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/1/1_l.jpg',
435
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/1/1_r.jpg',
436
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/1/1_u.jpg'
437
+ }, {
438
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/2/2_b.jpg',
439
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/2/2_d.jpg',
440
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/2/2_f.jpg',
441
+ index: 2,
442
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/2/2_l.jpg',
443
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/2/2_r.jpg',
444
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/2/2_u.jpg'
445
+ }, {
446
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/3/3_b.jpg',
447
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/3/3_d.jpg',
448
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/3/3_f.jpg',
449
+ index: 3,
450
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/3/3_l.jpg',
451
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/3/3_r.jpg',
452
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/3/3_u.jpg'
453
+ }, {
454
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/4/4_b.jpg',
455
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/4/4_d.jpg',
456
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/4/4_f.jpg',
457
+ index: 4,
458
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/4/4_l.jpg',
459
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/4/4_r.jpg',
460
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/4/4_u.jpg'
461
+ }, {
462
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/5/5_b.jpg',
463
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/5/5_d.jpg',
464
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/5/5_f.jpg',
465
+ index: 5,
466
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/5/5_l.jpg',
467
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/5/5_r.jpg',
468
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/5/5_u.jpg'
469
+ }, {
470
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/6/6_b.jpg',
471
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/6/6_d.jpg',
472
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/6/6_f.jpg',
473
+ index: 6,
474
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/6/6_l.jpg',
475
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/6/6_r.jpg',
476
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/6/6_u.jpg'
477
+ }, {
478
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/7/7_b.jpg',
479
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/7/7_d.jpg',
480
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/7/7_f.jpg',
481
+ index: 7,
482
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/7/7_l.jpg',
483
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/7/7_r.jpg',
484
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/7/7_u.jpg'
485
+ }, {
486
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/8/8_b.jpg',
487
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/8/8_d.jpg',
488
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/8/8_f.jpg',
489
+ index: 8,
490
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/8/8_l.jpg',
491
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/8/8_r.jpg',
492
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/8/8_u.jpg'
493
+ }, {
494
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/9/9_b.jpg',
495
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/9/9_d.jpg',
496
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/9/9_f.jpg',
497
+ index: 9,
498
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/9/9_l.jpg',
499
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/9/9_r.jpg',
500
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/9/9_u.jpg'
501
+ }, {
502
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/10/10_b.jpg',
503
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/10/10_d.jpg',
504
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/10/10_f.jpg',
505
+ index: 10,
506
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/10/10_l.jpg',
507
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/10/10_r.jpg',
508
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/10/10_u.jpg'
509
+ }, {
510
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/11/11_b.jpg',
511
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/11/11_d.jpg',
512
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/11/11_f.jpg',
513
+ index: 11,
514
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/11/11_l.jpg',
515
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/11/11_r.jpg',
516
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/11/11_u.jpg'
517
+ }, {
518
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/12/12_b.jpg',
519
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/12/12_d.jpg',
520
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/12/12_f.jpg',
521
+ index: 12,
522
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/12/12_l.jpg',
523
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/12/12_r.jpg',
524
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/12/12_u.jpg'
525
+ }, {
526
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/13/13_b.jpg',
527
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/13/13_d.jpg',
528
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/13/13_f.jpg',
529
+ index: 13,
530
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/13/13_l.jpg',
531
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/13/13_r.jpg',
532
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/13/13_u.jpg'
533
+ }, {
534
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/14/14_b.jpg',
535
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/14/14_d.jpg',
536
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/14/14_f.jpg',
537
+ index: 14,
538
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/14/14_l.jpg',
539
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/14/14_r.jpg',
540
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/14/14_u.jpg'
541
+ }, {
542
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/15/15_b.jpg',
543
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/15/15_d.jpg',
544
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/15/15_f.jpg',
545
+ index: 15,
546
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/15/15_l.jpg',
547
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/15/15_r.jpg',
548
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/15/15_u.jpg'
549
+ }, {
550
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/16/16_b.jpg',
551
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/16/16_d.jpg',
552
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/16/16_f.jpg',
553
+ index: 16,
554
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/16/16_l.jpg',
555
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/16/16_r.jpg',
556
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/16/16_u.jpg'
557
+ }, {
558
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/17/17_b.jpg',
559
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/17/17_d.jpg',
560
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/17/17_f.jpg',
561
+ index: 17,
562
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/17/17_l.jpg',
563
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/17/17_r.jpg',
564
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/17/17_u.jpg'
565
+ }, {
566
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/18/18_b.jpg',
567
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/18/18_d.jpg',
568
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/18/18_f.jpg',
569
+ index: 18,
570
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/18/18_l.jpg',
571
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/18/18_r.jpg',
572
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/18/18_u.jpg'
573
+ }, {
574
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/19/19_b.jpg',
575
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/19/19_d.jpg',
576
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/19/19_f.jpg',
577
+ index: 19,
578
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/19/19_l.jpg',
579
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/19/19_r.jpg',
580
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/19/19_u.jpg'
581
+ }, {
582
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/20/20_b.jpg',
583
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/20/20_d.jpg',
584
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/20/20_f.jpg',
585
+ index: 20,
586
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/20/20_l.jpg',
587
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/20/20_r.jpg',
588
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/20/20_u.jpg'
589
+ }, {
590
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/21/21_b.jpg',
591
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/21/21_d.jpg',
592
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/21/21_f.jpg',
593
+ index: 21,
594
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/21/21_l.jpg',
595
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/21/21_r.jpg',
596
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/21/21_u.jpg'
597
+ }, {
598
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/22/22_b.jpg',
599
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/22/22_d.jpg',
600
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/22/22_f.jpg',
601
+ index: 22,
602
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/22/22_l.jpg',
603
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/22/22_r.jpg',
604
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/22/22_u.jpg'
605
+ }, {
606
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/23/23_b.jpg',
607
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/23/23_d.jpg',
608
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/23/23_f.jpg',
609
+ index: 23,
610
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/23/23_l.jpg',
611
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/23/23_r.jpg',
612
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/23/23_u.jpg'
613
+ }, {
614
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/24/24_b.jpg',
615
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/24/24_d.jpg',
616
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/24/24_f.jpg',
617
+ index: 24,
618
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/24/24_l.jpg',
619
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/24/24_r.jpg',
620
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/24/24_u.jpg'
621
+ }, {
622
+ back: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/25/25_b.jpg',
623
+ down: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/25/25_d.jpg',
624
+ front: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/25/25_f.jpg',
625
+ index: 25,
626
+ left: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/25/25_l.jpg',
627
+ right: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/25/25_r.jpg',
628
+ up: 'release/ue4/6898cbea64bfa53120b12c2c554902ba/ue4_result/cube_2048/25/25_u.jpg'
629
+ }]
630
+ },
631
+ picture_url: 'vrframework/release/ue4_decoration_plan/zxMaeVKLQU93OZMG/vrproc-ue4/render/picture.jpg'
632
+ };
633
+ exports.work = work;