vrtalk-web-sdk 0.1.519 → 0.1.520
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.
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { VRTalkBaseData } from '../general/vrtalk-base-data';
|
|
2
2
|
import { MultiLanguageStr } from '../general/multi-language-str';
|
|
3
3
|
import { XrAnyAction } from './vr-action';
|
|
4
|
-
import { XrCanvasComponentBase } from './xr-canvas';
|
|
5
4
|
export declare const XR_HAMBURGER_MENU_DEFAULT_COLOR = "#262626";
|
|
6
|
-
export declare const XR_HAMBURGER_MENU_LEGACY_TEXT_ITEM_TYPE = "item";
|
|
7
5
|
export declare type XrHamburgerMenuNodeType = 'group' | 'text_item' | 'image_item' | 'video_item' | 'webview_item' | 'rich_text_item' | 'canvas_item';
|
|
8
6
|
export declare class XrHamburgerMenuNodeTypeDefine {
|
|
9
7
|
static readonly GROUP: XrHamburgerMenuNodeType;
|
|
@@ -129,7 +127,7 @@ export declare class XrHamburgerMenuCanvasItem extends XrHamburgerMenuNode {
|
|
|
129
127
|
designWidth: number;
|
|
130
128
|
height: number;
|
|
131
129
|
canvasBackgroundColor: string;
|
|
132
|
-
componentList:
|
|
130
|
+
componentList: XrHamburgerCanvasComponentBase[];
|
|
133
131
|
}
|
|
134
132
|
export declare type XrHamburgerMenuAnyNode = XrHamburgerMenuTextItem | XrHamburgerMenuImageItem | XrHamburgerMenuVideoItem | XrHamburgerMenuWebViewItem | XrHamburgerMenuRichTextItem | XrHamburgerMenuCanvasItem | XrHamburgerMenuGroup;
|
|
135
133
|
/**
|
|
@@ -146,9 +144,138 @@ export declare class XrHamburgerMenu {
|
|
|
146
144
|
backgroundColor: string;
|
|
147
145
|
pcWidth: number;
|
|
148
146
|
}
|
|
147
|
+
export declare type XrHamburgerCanvasComponentType = 'image' | 'text' | 'progress-bar' | 'video' | 'button';
|
|
148
|
+
export declare class XrHamburgerCanvasComponentTypeDefine {
|
|
149
|
+
static readonly IMAGE: XrHamburgerCanvasComponentType;
|
|
150
|
+
static readonly TEXT: XrHamburgerCanvasComponentType;
|
|
151
|
+
static readonly PROGRESS_BAR: XrHamburgerCanvasComponentType;
|
|
152
|
+
static readonly VIDEO: XrHamburgerCanvasComponentType;
|
|
153
|
+
static readonly BUTTON: XrHamburgerCanvasComponentType;
|
|
154
|
+
}
|
|
155
|
+
export declare type XrHamburgerCanvasComponentImageMode = 'contain' | 'cover' | 'fill' | 'scale-down' | 'none';
|
|
156
|
+
export declare class XrHamburgerCanvasComponentImageModeDefine {
|
|
157
|
+
static readonly CONTAIN: XrHamburgerCanvasComponentImageMode;
|
|
158
|
+
static readonly COVER: XrHamburgerCanvasComponentImageMode;
|
|
159
|
+
static readonly FILL: XrHamburgerCanvasComponentImageMode;
|
|
160
|
+
static readonly SCALE_DOWN: XrHamburgerCanvasComponentImageMode;
|
|
161
|
+
static readonly NONE: XrHamburgerCanvasComponentImageMode;
|
|
162
|
+
}
|
|
163
|
+
export declare type XrHamburgerCanvasComponentTextAlign = 'left' | 'center' | 'right';
|
|
164
|
+
export declare class XrHamburgerCanvasComponentTextAlignDefine {
|
|
165
|
+
static readonly LEFT: XrHamburgerCanvasComponentTextAlign;
|
|
166
|
+
static readonly CENTER: XrHamburgerCanvasComponentTextAlign;
|
|
167
|
+
static readonly RIGHT: XrHamburgerCanvasComponentTextAlign;
|
|
168
|
+
}
|
|
169
|
+
export declare type XrHamburgerCanvasComponentVerticalAlign = 'top' | 'middle' | 'bottom';
|
|
170
|
+
export declare class XrHamburgerCanvasComponentVerticalAlignDefine {
|
|
171
|
+
static readonly TOP: XrHamburgerCanvasComponentVerticalAlign;
|
|
172
|
+
static readonly MIDDLE: XrHamburgerCanvasComponentVerticalAlign;
|
|
173
|
+
static readonly BOTTOM: XrHamburgerCanvasComponentVerticalAlign;
|
|
174
|
+
}
|
|
175
|
+
export declare type XrHamburgerCanvasComponentProgressBarDirection = 'horizontal' | 'vertical';
|
|
176
|
+
export declare class XrHamburgerCanvasComponentProgressBarDirectionDefine {
|
|
177
|
+
static readonly HORIZONTAL: XrHamburgerCanvasComponentProgressBarDirection;
|
|
178
|
+
static readonly VERTICAL: XrHamburgerCanvasComponentProgressBarDirection;
|
|
179
|
+
}
|
|
180
|
+
export declare type XrHamburgerCanvasComponentVideoObjectFit = 'contain' | 'cover' | 'fill' | 'none';
|
|
181
|
+
export declare class XrHamburgerCanvasComponentVideoObjectFitDefine {
|
|
182
|
+
static readonly CONTAIN: XrHamburgerCanvasComponentVideoObjectFit;
|
|
183
|
+
static readonly COVER: XrHamburgerCanvasComponentVideoObjectFit;
|
|
184
|
+
static readonly FILL: XrHamburgerCanvasComponentVideoObjectFit;
|
|
185
|
+
static readonly NONE: XrHamburgerCanvasComponentVideoObjectFit;
|
|
186
|
+
}
|
|
187
|
+
export declare type XrHamburgerCanvasComponentButtonIconPosition = 'left' | 'right' | 'top';
|
|
188
|
+
export declare class XrHamburgerCanvasComponentButtonIconPositionDefine {
|
|
189
|
+
static readonly LEFT: XrHamburgerCanvasComponentButtonIconPosition;
|
|
190
|
+
static readonly RIGHT: XrHamburgerCanvasComponentButtonIconPosition;
|
|
191
|
+
static readonly TOP: XrHamburgerCanvasComponentButtonIconPosition;
|
|
192
|
+
}
|
|
149
193
|
/**
|
|
150
|
-
*
|
|
194
|
+
* 画布组件基类(XrHamburgerMenuCanvasItem 内部组件)
|
|
151
195
|
*
|
|
152
|
-
*
|
|
196
|
+
* 字段集与 XrMonitorComponentBase 一一对应,包含:
|
|
197
|
+
* - 通用布局(width/height/positionX/positionY/rotation/zIndex/opacity/visible)
|
|
198
|
+
* - 视觉(backgroundColor/border/radius/paddingX/paddingY)
|
|
199
|
+
* - hover 样式(hoverStyleEnabled 控制是否启用,默认关;老数据无字段视为关)
|
|
200
|
+
* - clickActionList:运行时点击执行
|
|
201
|
+
* - css/script:高级覆盖
|
|
153
202
|
*/
|
|
154
|
-
export declare
|
|
203
|
+
export declare class XrHamburgerCanvasComponentBase extends VRTalkBaseData {
|
|
204
|
+
type: XrHamburgerCanvasComponentType;
|
|
205
|
+
name: string;
|
|
206
|
+
remark: string;
|
|
207
|
+
width: number;
|
|
208
|
+
height: number;
|
|
209
|
+
positionX: number;
|
|
210
|
+
positionY: number;
|
|
211
|
+
rotation: number;
|
|
212
|
+
opacity: number;
|
|
213
|
+
visible: boolean;
|
|
214
|
+
zIndex: number;
|
|
215
|
+
backgroundColor: string;
|
|
216
|
+
hoverStyleEnabled: boolean;
|
|
217
|
+
hoverBackgroundColor: string;
|
|
218
|
+
hoverOpacity: number;
|
|
219
|
+
radius: number;
|
|
220
|
+
border: string;
|
|
221
|
+
paddingX: number;
|
|
222
|
+
paddingY: number;
|
|
223
|
+
clickActionList: XrAnyAction[];
|
|
224
|
+
css: Record<string, string>;
|
|
225
|
+
script: string;
|
|
226
|
+
}
|
|
227
|
+
export declare class XrHamburgerCanvasComponentImage extends XrHamburgerCanvasComponentBase {
|
|
228
|
+
type: XrHamburgerCanvasComponentType;
|
|
229
|
+
imageSrc: string;
|
|
230
|
+
imageMode: XrHamburgerCanvasComponentImageMode;
|
|
231
|
+
}
|
|
232
|
+
export declare class XrHamburgerCanvasComponentText extends XrHamburgerCanvasComponentBase {
|
|
233
|
+
type: XrHamburgerCanvasComponentType;
|
|
234
|
+
width: number;
|
|
235
|
+
height: number;
|
|
236
|
+
textContent: string;
|
|
237
|
+
textColor: string;
|
|
238
|
+
textSize: number;
|
|
239
|
+
textVerticalAlign: XrHamburgerCanvasComponentVerticalAlign;
|
|
240
|
+
textAlign: XrHamburgerCanvasComponentTextAlign;
|
|
241
|
+
textBold: boolean;
|
|
242
|
+
textItalic: boolean;
|
|
243
|
+
}
|
|
244
|
+
export declare class XrHamburgerCanvasComponentProgressBar extends XrHamburgerCanvasComponentBase {
|
|
245
|
+
type: XrHamburgerCanvasComponentType;
|
|
246
|
+
width: number;
|
|
247
|
+
height: number;
|
|
248
|
+
progressBarColor: string;
|
|
249
|
+
progressRange: number;
|
|
250
|
+
progressBarDirection: XrHamburgerCanvasComponentProgressBarDirection;
|
|
251
|
+
progress: string;
|
|
252
|
+
}
|
|
253
|
+
export declare class XrHamburgerCanvasComponentVideo extends XrHamburgerCanvasComponentBase {
|
|
254
|
+
type: XrHamburgerCanvasComponentType;
|
|
255
|
+
width: number;
|
|
256
|
+
height: number;
|
|
257
|
+
videoSrc: string;
|
|
258
|
+
poster: string;
|
|
259
|
+
autoplay: boolean;
|
|
260
|
+
muted: boolean;
|
|
261
|
+
loop: boolean;
|
|
262
|
+
controls: boolean;
|
|
263
|
+
objectFit: XrHamburgerCanvasComponentVideoObjectFit;
|
|
264
|
+
}
|
|
265
|
+
export declare class XrHamburgerCanvasComponentButton extends XrHamburgerCanvasComponentBase {
|
|
266
|
+
type: XrHamburgerCanvasComponentType;
|
|
267
|
+
width: number;
|
|
268
|
+
height: number;
|
|
269
|
+
radius: number;
|
|
270
|
+
paddingX: number;
|
|
271
|
+
paddingY: number;
|
|
272
|
+
backgroundColor: string;
|
|
273
|
+
hoverBackgroundColor: string;
|
|
274
|
+
textContent: string;
|
|
275
|
+
textColor: string;
|
|
276
|
+
textSize: number;
|
|
277
|
+
textBold: boolean;
|
|
278
|
+
textItalic: boolean;
|
|
279
|
+
iconSrc: string;
|
|
280
|
+
iconPosition: XrHamburgerCanvasComponentButtonIconPosition;
|
|
281
|
+
}
|
package/dist/vrtalk-web-sdk.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var a=t();for(var s in a)("object"==typeof exports?exports:e)[s]=a[s]}}(this,(()=>(()=>{"use strict";var e={d:(t,a)=>{for(var s in a)e.o(a,s)&&!e.o(t,s)&&Object.defineProperty(t,s,{enumerable:!0,get:a[s]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{ArMultisetSettings:()=>is,ChromaKeySettings:()=>_,Color:()=>d,ColorBuilder:()=>c,ColorParser:()=>l,Component2dFaceToCameraModeDefine:()=>j,EaseAnimationFunctionDefine:()=>E,EaseAnimationSettings:()=>m,FreeButton:()=>p,GotoPositionMethodDefine:()=>A,HoverBorderSettings:()=>O,LanguageTypeDefine:()=>g,LogicCurrentTimeOutputTypeDefine:()=>da,LogicRandomColorPaletteDefine:()=>ca,MediaLoopModeDefine:()=>L,MultiLanguageStr:()=>I,POPUP_USER_FORM_DEFAULT_STAR_ACTIVE_COLOR:()=>Sa,POPUP_USER_FORM_DEFAULT_STAR_INACTIVE_COLOR:()=>Na,ParentComCommandAssetLabel:()=>zi,ParentComCommandAudio:()=>ar,ParentComCommandCamera:()=>Zi,ParentComCommandComponent:()=>Hi,ParentComCommandCover:()=>ki,ParentComCommandDollyPath:()=>cr,ParentComCommandFloor:()=>ji,ParentComCommandFov:()=>Xi,ParentComCommandInfoTemplate:()=>Gi,ParentComCommandInformation:()=>xi,ParentComCommandLayer:()=>Yi,ParentComCommandLight:()=>Wi,ParentComCommandMarker:()=>$i,ParentComCommandMessageCard:()=>rr,ParentComCommandMonitor:()=>ir,ParentComCommandNavigation:()=>er,ParentComCommandObstacle:()=>tr,ParentComCommandPlayer:()=>Bi,ParentComCommandRenderer:()=>qi,ParentComCommandSpaceFence:()=>or,ParentComCommandSticker:()=>Ji,ParentComCommandSweep:()=>Qi,ParentComCommandTarget:()=>sr,ParentComCommandTrimmer:()=>Ki,ParentComCommandUi:()=>Fi,ParentComCommandWormhole:()=>nr,ParentComMessageAssetLabel:()=>gr,ParentComMessageCamera:()=>lr,ParentComMessageComponent:()=>dr,ParentComMessageDollyPath:()=>Lr,ParentComMessageFloor:()=>Er,ParentComMessageFov:()=>_r,ParentComMessageNavigation:()=>Cr,ParentComMessageObstacle:()=>pr,ParentComMessagePlayer:()=>fi,ParentComMessageRenderer:()=>Tr,ParentComMessageSpaceFence:()=>Nr,ParentComMessageSticker:()=>Or,ParentComMessageSweep:()=>mr,ParentComMessageTarget:()=>Ir,ParentComMessageTrimmer:()=>Ar,ParentComMessageWormhole:()=>Sr,PlayerComCommand:()=>Xo,PlayerComCommandAssetLabel:()=>li,PlayerComCommandAudio:()=>ci,PlayerComCommandCamera:()=>si,PlayerComCommandComponent:()=>jo,PlayerComCommandCover:()=>Ko,PlayerComCommandDollyPath:()=>Ci,PlayerComCommandFloor:()=>ai,PlayerComCommandFov:()=>Zo,PlayerComCommandInfoTemplate:()=>zo,PlayerComCommandInformation:()=>Qo,PlayerComCommandLayer:()=>qo,PlayerComCommandLight:()=>$o,PlayerComCommandMarker:()=>oi,PlayerComCommandMessageCard:()=>Ti,PlayerComCommandMonitor:()=>mi,PlayerComCommandNavigation:()=>ii,PlayerComCommandObstacle:()=>ri,PlayerComCommandPlayer:()=>Wo,PlayerComCommandRenderer:()=>ni,PlayerComCommandSpaceFence:()=>Ei,PlayerComCommandSticker:()=>ti,PlayerComCommandSweep:()=>Vi,PlayerComCommandTarget:()=>di,PlayerComCommandTrimmer:()=>ei,PlayerComCommandTypeDefine:()=>Yo,PlayerComCommandUi:()=>Jo,PlayerComCommandWormhole:()=>_i,PlayerComMessage:()=>pi,PlayerComMessageAssetLabel:()=>Di,PlayerComMessageCamera:()=>Oi,PlayerComMessageComponent:()=>gi,PlayerComMessageDollyPath:()=>bi,PlayerComMessageFloor:()=>Si,PlayerComMessageFov:()=>Ii,PlayerComMessageNavigation:()=>ui,PlayerComMessageObstacle:()=>Pi,PlayerComMessagePlayer:()=>Ni,PlayerComMessageRenderer:()=>Ri,PlayerComMessageSpaceFence:()=>vi,PlayerComMessageSticker:()=>yi,PlayerComMessageSweep:()=>Li,PlayerComMessageTarget:()=>hi,PlayerComMessageTrimmer:()=>Mi,PlayerComMessageTypeDefine:()=>Ai,PlayerComMessageWormhole:()=>wi,PlayerController:()=>Ui,PopupUserFormCommonIconPaths:()=>La,PopupUserFormControlConfig:()=>na,PopupUserFormControlVariantDefine:()=>ta,PopupUserFormDataTypeDefaultVariant:()=>aa,PopupUserFormDataTypeDefine:()=>ea,PopupUserFormField:()=>oa,PopupUserFormOption:()=>sa,PopupUserFormStarIconKeyDefine:()=>Ia,PopupUserFormStarIconKeyList:()=>ga,PopupUserFormStarIconPaths:()=>Oa,RendererResolution:()=>S,TakeScreenshotVisibility:()=>N,TtsTextModeDefine:()=>ft,UnityNavigationMode:()=>R,UnityNavigationParams:()=>u,UnityNavigationPlan:()=>P,VRTalkBaseData:()=>C,VRTalkEditablePlayer:()=>Rr,Vector2:()=>s,Vector3:()=>a,VrAction:()=>Ue,VrActionAnalyticsValueModeDefine:()=>Zt,VrActionCloudFormValueModeDefine:()=>Kt,VrActionHitAnalyticsEventFieldBinding:()=>qt,VrActionParams:()=>Xe,VrActionParams2dGeneralChangeDeformationSettings:()=>ze,VrActionParams2dImageChangeSource:()=>je,VrActionParams2dPanelButtonChangeEnabled:()=>at,VrActionParams2dPanelChangeScene:()=>tt,VrActionParams2dTextChangeSource:()=>Qe,VrActionParams2dVideoChangeMuteState:()=>$e,VrActionParams2dVideoChangePlayState:()=>qe,VrActionParams2dVideoChangeSource:()=>Ze,VrActionParams3dBoxChangeColor:()=>et,VrActionParams3dModelOperateAnimationClip:()=>ct,VrActionParamsAbilityEnable:()=>xe,VrActionParamsAbilityStop:()=>He,VrActionParamsAiAgentActivate:()=>Gt,VrActionParamsAiAgentHide:()=>xt,VrActionParamsAiAgentTriggerConversation:()=>Xt,VrActionParamsAiAgentTriggerMonologue:()=>Ht,VrActionParamsAudioCenterPlayList:()=>it,VrActionParamsAudioCenterPlayerChangeDisplayMode:()=>rt,VrActionParamsAudioCenterSetVolume:()=>Wt,VrActionParamsBackgroundThread:()=>Ft,VrActionParamsCameraDollyMove:()=>_t,VrActionParamsCameraDollyStop:()=>Et,VrActionParamsCameraMoveTo:()=>dt,VrActionParamsCanvasComponentChangeVisibility:()=>wt,VrActionParamsCloudFormCollectField:()=>zt,VrActionParamsCloudFormReset:()=>jt,VrActionParamsCloudFormShowDialog:()=>Jt,VrActionParamsCloudFormSubmit:()=>Qt,VrActionParamsComponentGeneralAudioSourceChangeLoopMode:()=>ot,VrActionParamsComponentGeneralAudioSourcePause:()=>nt,VrActionParamsComponentGeneralAudioSourcePlayControl:()=>st,VrActionParamsComponentGeneralChangeTransform:()=>Ke,VrActionParamsComponentGeneralChangeVisibility:()=>We,VrActionParamsComponentGeneralOperateTransitionAnimation:()=>Je,VrActionParamsFlowEnter:()=>Pt,VrActionParamsFlowExit:()=>Mt,VrActionParamsHamburgerMenuNodeChangeVisibility:()=>bt,VrActionParamsHitAnalyticsEvent:()=>$t,VrActionParamsInformationContentCardShow:()=>Ot,VrActionParamsInformationLinkOpen:()=>gt,VrActionParamsLayerChangeVisibility:()=>vt,VrActionParamsLogicCurrentTime:()=>_a,VrActionParamsLogicRandomColor:()=>la,VrActionParamsLogicRandomNumber:()=>ra,VrActionParamsLogicRandomPickBoolean:()=>Ta,VrActionParamsLogicRandomPickColor:()=>pa,VrActionParamsLogicRandomPickCssColor:()=>Aa,VrActionParamsLogicRandomPickEnum:()=>Ca,VrActionParamsLogicRandomPickNumber:()=>ma,VrActionParamsLogicRandomPickString:()=>Ea,VrActionParamsLogicVariableBooleanToggle:()=>ut,VrActionParamsLogicVariableModify:()=>It,VrActionParamsLogicVariableNumberAdd:()=>St,VrActionParamsLogicVariableStringAdvanced:()=>Rt,VrActionParamsLogicVariableStringAppend:()=>Nt,VrActionParamsLogicVariableStringTrimEnd:()=>Lt,VrActionParamsMessageCardChangeShowState:()=>Ut,VrActionParamsMonitorChangeEnabled:()=>yt,VrActionParamsMonitorComponentChangeVisibility:()=>ht,VrActionParamsMonitorSwitchActiveTab:()=>Dt,VrActionParamsNavigationStart:()=>lt,VrActionParamsPopupUserFormShowDialog:()=>ia,VrActionParamsSweepChangeEnabled:()=>mt,VrActionParamsSweepChangePanorama:()=>Tt,VrActionParamsSweepMarkerChangeEnabled:()=>Ct,VrActionParamsSweepOnlyEnableCurrent:()=>At,VrActionParamsSweepResetToDefault:()=>pt,VrActionParamsSystemCommonWait:()=>Ye,VrActionParamsSystemSetInteractiveState:()=>Yt,VrActionParamsSystemUiSettingsChange:()=>Vt,VrActionParamsTtsPlayVoice:()=>Bt,VrActionParamsTtsRealtimeStream:()=>kt,VrActionTypeDefine:()=>Ge,VrAdChannel:()=>Ra,VrAdItem:()=>ua,VrAiSettings:()=>Pa,VrAssetLabel:()=>Ma,VrAudio:()=>H,VrAudioCenter:()=>F,VrAudioList:()=>Y,VrAudioLyric:()=>X,VrCameraEnterSettings:()=>ss,VrCameraModeDefine:()=>n,VrCameraMoveTransitionTypeDefine:()=>o,VrCameraPose:()=>r,VrComponent2dAdvertisementData:()=>io,VrComponent2dDeformationModeDefine:()=>q,VrComponent2dDeformationSettings:()=>$,VrComponent2dImageData:()=>ro,VrComponent2dImageSourceData:()=>co,VrComponent2dPanelAnsweringModeSettings:()=>mo,VrComponent2dPanelButtonItemData:()=>Io,VrComponent2dPanelButtonTypeDefine:()=>Ao,VrComponent2dPanelData:()=>_o,VrComponent2dPanelEnumModifierModeSettings:()=>To,VrComponent2dPanelImageItemData:()=>Oo,VrComponent2dPanelItem:()=>po,VrComponent2dPanelItemStyle:()=>Lo,VrComponent2dPanelItemTypeDefine:()=>Co,VrComponent2dPanelSceneData:()=>Eo,VrComponent2dPanelSceneGeneralParams:()=>So,VrComponent2dPanelSceneModeDefine:()=>lo,VrComponent2dPanelSceneStyle:()=>No,VrComponent2dPanelTextItemData:()=>go,VrComponent2dTextBasicModeSettings:()=>Do,VrComponent2dTextData:()=>Mo,VrComponent2dTextHorizontalAlignDefine:()=>Ro,VrComponent2dTextMarqueeModeSettings:()=>ho,VrComponent2dTextModeDefine:()=>Po,VrComponent2dTextSourceData:()=>yo,VrComponent2dTextVerticalAlignDefine:()=>uo,VrComponent2dVideoData:()=>wo,VrComponent2dVideoSourceData:()=>vo,VrComponent3dBoxData:()=>bo,VrComponent3dModelAnimationClipData:()=>fo,VrComponent3dModelAnimationData:()=>Uo,VrComponent3dModelData:()=>Vo,VrComponentAudioSource:()=>x,VrComponentAudioSourceDistanceModelDefine:()=>G,VrComponentControllerTypeDefine:()=>K,VrComponentCustomVisibilitySettings:()=>Q,VrComponentData:()=>J,VrComponentData2d:()=>Z,VrComponentData2dCurvedSurfaceSettings:()=>ee,VrComponentData2dFoldSurfaceSettings:()=>te,VrComponentData3d:()=>ae,VrComponentNavigationSettings:()=>z,VrComponentTagData:()=>ko,VrComponentTagTextLocationDefine:()=>Bo,VrComponentTransitionAnimation:()=>ne,VrComponentTransitionAnimationKeyframe:()=>oe,VrComponentTransitionAnimationPlayCompleteProcessTypeDefine:()=>se,VrComponentTypeDefine:()=>W,VrContentCard:()=>f,VrContentCardMedia:()=>k,VrContentCardMediaTypeDefine:()=>V,VrContentCardModule:()=>B,VrContentCardShowStyleDefine:()=>U,VrContentData:()=>rs,VrContentDataBuilder:()=>as,VrCoverBackgroundFitTypeDefine:()=>va,VrCoverBackgroundTypeDefine:()=>wa,VrCoverButtonTypeDefine:()=>ba,VrCoverSettings:()=>Va,VrFloor:()=>cs,VrFloorMapSettings:()=>ls,VrFlow:()=>ps,VrFlowPositionSettings:()=>Ns,VrFlowPositionTypeDefine:()=>Ss,VrFlowStatusDefine:()=>Cs,VrFlowStep:()=>gs,VrFlowStepArriveAction:()=>Is,VrFlowStepBarStyleDefine:()=>Os,VrFlowStepEndpointSettings:()=>Rs,VrFlowStepTypeDefine:()=>As,VrFlowTrigger:()=>Ls,VrFov:()=>us,VrInfoTemplateItemValue:()=>ha,VrInfoTemplateSettings:()=>Da,VrIntroduceItem:()=>os,VrLayer:()=>Ps,VrLight:()=>Ms,VrLightAmbient:()=>ys,VrLightDirectional:()=>Ds,VrLightPoint:()=>hs,VrMarker:()=>vs,VrMarkerGroup:()=>bs,VrMarkerTypeDefine:()=>ws,VrMeasureAreaUnitDefine:()=>Us,VrMeasureData:()=>fs,VrMeasureDistanceUnitDefine:()=>Vs,VrMeasurePoint:()=>Bs,VrNavigationAdConfig:()=>ks,VrNavigationModeDefine:()=>y,VrNavigationPath:()=>v,VrNavigationPoint:()=>h,VrNavigationPointBuilder:()=>D,VrNavigationPointTypeDefine:()=>M,VrNavigationRequest:()=>w,VrNavigationResult:()=>b,VrObstacle:()=>Fs,VrObstacleGroup:()=>Gs,VrPlayerModeDefine:()=>Fo,VrPlayerStatusDefine:()=>xo,VrPlayerStatusNumMapping:()=>Go,VrPlayerStatusValue:()=>Ho,VrPlayerUiSettings:()=>ya,VrSignal:()=>ms,VrSignalSourceDefine:()=>_s,VrSignalTrigger:()=>Ts,VrSignalTypeDefine:()=>ds,VrSignalTypeSourceMapping:()=>Es,VrSticker:()=>Ws,VrStickerActivateTypeDefine:()=>Ys,VrSweep:()=>Ks,VrSweepAlignmentDefine:()=>Js,VrSweepCameraPose:()=>i,VrSweepPanoramaBallExternalViewModeDefine:()=>js,VrSweepPanoramaData:()=>Zs,VrSweepPanoramaSourceData:()=>qs,VrSweepPanoramaSourceTypeDefine:()=>Qs,VrSweepPlacementTypeDefine:()=>zs,VrTarget:()=>rn,VrTargetGroup:()=>cn,VrTheme:()=>$s,VrTrimmerData:()=>en,VrView:()=>an,VrViewTypeDefine:()=>sn,VrWorldSizeInfo:()=>ns,VrWormhole:()=>nn,VrWormholeGroup:()=>on,WorkNoteEnterTag:()=>xs,XR_HAMBURGER_MENU_DEFAULT_COLOR:()=>Ba,XR_HAMBURGER_MENU_LEGACY_TEXT_ITEM_TYPE:()=>ka,XrAbility:()=>Kn,XrAbilityGroup:()=>Wn,XrActionCategoryDefine:()=>be,XrAiAgent:()=>Hn,XrAiAgentEffortLevelDefine:()=>Gn,XrAiAgentRolePromptSettings:()=>Fn,XrAiAgentSkillPrompt:()=>xn,XrAiAgentUseAbility:()=>bn,XrAiAgentUseAnalyticsEvent:()=>kn,XrAiAgentUseBackgroundThread:()=>wn,XrAiAgentUseCameraDollyPath:()=>vn,XrAiAgentUseCloudForm:()=>fn,XrAiAgentUseComponent:()=>un,XrAiAgentUseContentCard:()=>Vn,XrAiAgentUseFov:()=>Un,XrAiAgentUseKnowledgeBase:()=>Bn,XrAiAgentUseSpaceFence:()=>Dn,XrAiAgentUseSpaceFenceGroup:()=>hn,XrAiAgentUseSticker:()=>yn,XrAiAgentUseTarget:()=>Pn,XrAiAgentUseVariable:()=>Mn,XrAudioCenterState:()=>we,XrBackgroundThread:()=>Rn,XrBackgroundThreadState:()=>ge,XrBackgroundThreadStatusDefine:()=>Oe,XrBaseAction:()=>Ve,XrCameraDollyPath:()=>Yn,XrCameraDollyPathNode:()=>Xn,XrCanvasComponentBase:()=>eo,XrCanvasComponentButton:()=>oo,XrCanvasComponentButtonIconPositionDefine:()=>$n,XrCanvasComponentImage:()=>to,XrCanvasComponentImageModeDefine:()=>zn,XrCanvasComponentProgressBar:()=>so,XrCanvasComponentProgressBarDirectionDefine:()=>Zn,XrCanvasComponentText:()=>ao,XrCanvasComponentTextAlignDefine:()=>Qn,XrCanvasComponentTypeDefine:()=>Jn,XrCanvasComponentVerticalAlignDefine:()=>jn,XrCanvasComponentVideo:()=>no,XrCanvasComponentVideoObjectFitDefine:()=>qn,XrComponentState2dImage:()=>Se,XrComponentState2dPanel:()=>Re,XrComponentState2dText:()=>Le,XrComponentState2dVideo:()=>Ne,XrComponentState3dBox:()=>ue,XrComponentState3dModel:()=>Pe,XrComponentStateBase:()=>Ie,XrComponentStateTag:()=>Me,XrConditionAction:()=>fe,XrCountLoopAction:()=>Be,XrExpressionLoopAction:()=>Fe,XrExpressionLoopActionCheckExpressionPositionDefine:()=>ke,XrHamburgerMenu:()=>$a,XrHamburgerMenuCanvasItem:()=>qa,XrHamburgerMenuGroup:()=>Qa,XrHamburgerMenuImageItem:()=>Wa,XrHamburgerMenuImageItemSlide:()=>Ya,XrHamburgerMenuNode:()=>Ha,XrHamburgerMenuNodeBase:()=>xa,XrHamburgerMenuNodeTypeDefine:()=>Fa,XrHamburgerMenuPcLayoutModeDefine:()=>Ga,XrHamburgerMenuRichTextItem:()=>Za,XrHamburgerMenuTextItem:()=>Xa,XrHamburgerMenuVideoItem:()=>Ja,XrHamburgerMenuVideoItemSlide:()=>Ka,XrHamburgerMenuWebViewItem:()=>za,XrMessageCard:()=>Ln,XrMonitor:()=>Nn,XrMonitorComponentBase:()=>pn,XrMonitorComponentButton:()=>Sn,XrMonitorComponentButtonIconPositionDefine:()=>Cn,XrMonitorComponentImage:()=>An,XrMonitorComponentImageModeDefine:()=>dn,XrMonitorComponentProgressBar:()=>gn,XrMonitorComponentProgressBarDirectionDefine:()=>mn,XrMonitorComponentRuntimeState:()=>ye,XrMonitorComponentText:()=>On,XrMonitorComponentTextAlignDefine:()=>_n,XrMonitorComponentTypeDefine:()=>ln,XrMonitorComponentVerticalAlignDefine:()=>En,XrMonitorComponentVideo:()=>In,XrMonitorComponentVideoObjectFitDefine:()=>Tn,XrMonitorRuntimeState:()=>De,XrNavigationState:()=>ve,XrPrepareSettings:()=>Ua,XrRuntimeState:()=>he,XrSpaceFence:()=>Hs,XrSpaceFenceGroup:()=>Xs,XrStateBindings:()=>Ae,XrStateBindingsSourceTypeDefine:()=>Ce,XrStateBindingsTargetTypeDefine:()=>pe,XrTypedValue:()=>_e,XrTypedValueModeDefine:()=>de,XrVariable:()=>re,XrVariableExpressionWatcher:()=>Te,XrVariablePreFill:()=>fa,XrVariableScope:()=>le,XrVariableScopeTypeDefine:()=>ce,XrVariableTarget:()=>Ee,XrVariableTypeDefine:()=>ie,XrVariableWatcherExpressionModeDefine:()=>me,XrVirtualFloor:()=>tn,createEmptyRichTextDoc:()=>ja,migrateHamburgerMenuLegacyNodeType:()=>es,migrateTriggersToCentralized:()=>Mr});class a{x=0;y=0;z=0;constructor(e,t,a){this.x=e,this.y=t,this.z=a}}class s{x=0;y=0;constructor(e,t){this.x=e,this.y=t}}class n{static FLOORPLAN="floorplan";static INSIDE="inside";static OUTSIDE="outside";static TRANSITIONING="transitioning";static DOLLHOUSE="dollhouse"}class o{static FLY="fly";static INSTANT="instant";static FADE="fade"}class i{sweepId="";rotation=new s(0,0)}class r{floorId="";sweepId="";position=new a(0,0,0);rotation=new s(0,0);zoom=1;mode=n.INSIDE;originalEuler=new a(0,0,0)}class c{static createColorRgb(e,t,a){let s=new d;return s.r=e,s.g=t,s.b=a,s}static createColorRgba(e,t,a,s){let n=new d;return n.r=e,n.g=t,n.b=a,n.a=s,n}static createColorByStr(e){let t=new d;if(e.startsWith("#")){let a=e.substring(1);4===a.length?(t.r=parseInt(a.substring(0,1)+a.substring(0,1),16),t.g=parseInt(a.substring(1,2)+a.substring(1,2),16),t.b=parseInt(a.substring(2,3)+a.substring(2,3),16),t.a=parseInt(a.substring(3,4)+a.substring(3,4),16)/255):8===a.length?(t.r=parseInt(a.substring(0,2),16),t.g=parseInt(a.substring(2,4),16),t.b=parseInt(a.substring(4,6),16),t.a=parseInt(a.substring(6,8),16)/255):3===a.length?(t.r=parseInt(a.substring(0,1)+a.substring(0,1),16),t.g=parseInt(a.substring(1,2)+a.substring(1,2),16),t.b=parseInt(a.substring(2,3)+a.substring(2,3),16),t.a=1):6===a.length&&(t.r=parseInt(a.substring(0,2),16),t.g=parseInt(a.substring(2,4),16),t.b=parseInt(a.substring(4,6),16),t.a=1)}else if(e.startsWith("rgba")){let a=e.substring(5,e.length-1).split(",");t.r=parseInt(a[0]),t.g=parseInt(a[1]),t.b=parseInt(a[2]),t.a=parseFloat(a[3])}else if(e.startsWith("rgb")){let a=e.substring(4,e.length-1).split(",");t.r=parseInt(a[0]),t.g=parseInt(a[1]),t.b=parseInt(a[2]),t.a=1}return t}static createRandomColor(e,t){let a=new d;return a.r=Math.floor(256*Math.random()),a.g=Math.floor(256*Math.random()),a.b=Math.floor(256*Math.random()),a.a=e?Math.random():t||1,a}}class l{static colorToRgbaString(e){return e?`rgba(${e.r}, ${e.g}, ${e.b}, ${e.a})`:"rgba(0, 0, 0, 1)"}static colorToHexString(e){const t=e=>{const t=Math.round(e).toString(16);return 1===t.length?`0${t}`:t};return`#${t(e.r)}${t(e.g)}${t(e.b)}`}static colorToTHREEColor(e){return{r:e.r/255,g:e.g/255,b:e.b/255}}}class d{r=0;g=0;b=0;a=1}class _{enabled=!1;color=c.createColorRgb(0,0,0);tolerance=20}class E{static LINEAR="linear";static EASE_IN_QUAD="easeInQuad";static EASE_OUT_QUAD="easeOutQuad";static EASE_IN_OUT_QUAD="easeInOutQuad";static EASE_OUT_IN_QUAD="easeOutInQuad";static EASE_IN_CUBIC="easeInCubic";static EASE_OUT_CUBIC="easeOutCubic";static EASE_IN_OUT_CUBIC="easeInOutCubic";static EASE_OUT_IN_CUBIC="easeOutInCubic";static EASE_IN_QUART="easeInQuart";static EASE_OUT_QUART="easeOutQuart";static EASE_IN_OUT_QUART="easeInOutQuart";static EASE_OUT_IN_QUART="easeOutInQuart";static EASE_IN_QUINT="easeInQuint";static EASE_OUT_QUINT="easeOutQuint";static EASE_IN_OUT_QUINT="easeInOutQuint";static EASE_OUT_IN_QUINT="easeOutInQuint";static EASE_IN_SINE="easeInSine";static EASE_OUT_SINE="easeOutSine";static EASE_IN_OUT_SINE="easeInOutSine";static EASE_OUT_IN_SINE="easeOutInSine";static EASE_IN_EXPO="easeInExpo";static EASE_OUT_EXPO="easeOutExpo";static EASE_IN_OUT_EXPO="easeInOutExpo";static EASE_OUT_IN_EXPO="easeOutInExpo";static EASE_IN_CIRC="easeInCirc";static EASE_OUT_CIRC="easeOutCirc";static EASE_IN_OUT_CIRC="easeInOutCirc";static EASE_OUT_IN_CIRC="easeOutInCirc";static EASE_IN_BACK="easeInBack";static EASE_OUT_BACK="easeOutBack";static EASE_IN_OUT_BACK="easeInOutBack";static EASE_OUT_IN_BACK="easeOutInBack";static EASE_IN_BOUNCE="easeInBounce";static EASE_OUT_BOUNCE="easeOutBounce";static EASE_IN_OUT_BOUNCE="easeInOutBounce";static EASE_OUT_IN_BOUNCE="easeOutInBounce";static CUBIC_BEZIER_CURVE="cubicBezierCurve";static SPRING="spring";static ELASTIC="elastic"}class m{waitTime=0;easeFunction=E.LINEAR;duration=500;cubicBezierCurveParamX1=.5;cubicBezierCurveParamY1=.05;cubicBezierCurveParamX2=.1;cubicBezierCurveParamY2=.3;springParamMass=1;springParamStiffness=80;springParamDamping=10;springParamVelocity=0;elasticParamType="easeOutElastic";elasticParamAmplitude=1;elasticParamPeriod=.6}class T{static randomUUID(e){return(e?"xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx":"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx").replace(/[xy]/g,(e=>{const t=16*Math.random()|0;return("x"==e?t:3&t|8).toString(16)}))}}class C{id="";constructor(){this.id=T.randomUUID(!0)}}class p extends C{name="";color=c.createColorByStr("#444444");textColor=c.createColorByStr("#ffffff");additionalData={};clickActionList=[];localVariableList=[]}class A{static NAVIGATION_TO_MANUAL="navigation_to_manual";static NAVIGATION_TO_AUTO="navigation_to_auto";static DIRECT_TO_FLY="direct_to_fly";static DIRECT_TO_FADE="direct_to_fade";static DIRECT_TO_INSTANT="direct_to_instant"}class O{enabled=!1;hoverBorderColor=c.createColorRgba(0,0,0,1);borderWidth=.01}class g{static ZH_CN="zh_cn";static ZH_TW="zh_tw";static ZH_HK="zh_hk";static EN="en";static KR="kr";static JP="jp";static TH="th";static VN="vn";static ES="es";static FR="fr";static DE="de"}class I{original_content="";language_type=g.EN;zh_cn="";zh_tw="";zh_hk="";en="";kr="";jp="";th="";vn="";es="";fr="";de=""}class S{width=1920;height=1080;constructor(e,t){this.width=e,this.height=t}}class N{mattertags=!1;measurements;sweeps;views;components;constructor(e,t,a,s,n){this.mattertags=e,this.measurements=t,this.sweeps=a,this.views=s,this.components=n}}class L{static NO_LOOP="no_loop";static LOOP_ALL="loop_all";static LOOP_SINGLE="loop_single"}class R extends C{name="";description="";title="";code="";enabled=!1;planList=[]}class u{transformPointsGps=[];transformPointsVrSpace=[new a(0,0,0),new a(0,0,0),new a(0,0,0)];cellSize=.1;walkableHeight=1.6;characterRadius=.2;walkableClimb=1;maxSlope=45;maxEdgeLength=1;leadBotUseSameModelForDifferentAction=!0;leadBotModelSrc="";leadBotModelScale=new a(1,1,1);leadBotModelOverlayRotate=new a(0,0,0);leadBotModelSrcStand="";leadBotModelScaleStand=new a(1,1,1);leadBotModelOverlayRotateStand=new a(0,0,0);leadBotModelSrcWalk="";leadBotModelScaleWalk=new a(1,1,1);leadBotModelOverlayRotateWalk=new a(0,0,0);leadBotModelSrcRun="";leadBotModelScaleRun=new a(1,1,1);leadBotModelOverlayRotateRun=new a(0,0,0);leadBotModelSrcArrive="";leadBotModelScaleArrive=new a(1,1,1);leadBotModelOverlayRotateArrive=new a(0,0,0);leadBotAnimationNameStand="";leadBotAnimationNameWalk="";leadBotAnimationNameRun="";leadBotAnimationNameArrive="";thresholdLeadBotDistanceToPlayer=6;thresholdLeadBotDistanceToPlayerToWalk=4;thresholdLeadBotDistanceToPlayerToClimb=.4;thresholdLeadBotDistanceToPlayerToClimbToWalk=0;thresholdLeadBotDistanceToPlayerToDescend=3.5;thresholdLeadBotDistanceToPlayerToDescendToWalk=2;thresholdLeadBotDistanceToPlayerToRun=2;leadBotSpeedRun=3.5;leadBotSpeedWalk=1.35;thresholdUserDistanceToRoute=3;thresholdShowComponents=50;thresholdVideoComponentInvisibleToPause=3;thresholdDestroyComponents=10;thresholdShowComponentsWhenEnterFloor=5}class P extends C{name="";title=new I;description=new I;obstacleGroupIds=[];wormholeGroupIds=[];targetGroupIds=[];graphCacheZipFileSrc=""}class M{static sweep="sweep";static anywhere="anywhere";static teleport="teleport"}class y{static AUTO="auto";static MANUAL="manual";static MANUAL_SIMPLE="manual_simple"}class D{static createSweepPoint(e){const t=new h;return t.type=M.sweep,t.sweepId=e.id,t.position=e.position,t}static createAnywherePoint(e){const t=new h;return t.type=M.anywhere,t.position=e,t}}class h{type=M.sweep;sweepId="";position=new a(0,0,0)}class w{id="";startPoint=new h;endPoint=new h;isAutoStart=!0;navigationMode=y.MANUAL;autoRecalculate=!0;autoRecalculateDistanceThreshold=.5;pathColor=c.createColorByStr("#03b203")}class v{sweepStartPoint=new h;sweepEndPoint=new h;pathPoints=[]}class b{request=new w;result=!1;pathList=[]}class V{static VIDEO="video";static IMAGE="image";static AUDIO="audio";static D3_MODEL="3d_model";static LINK="link";static DOCUMENT="document"}class U{static BUBBLE="bubble";static DIALOG="dialog";static DRAWER="drawer"}class f extends C{id="";name="";dialogWidth="800px";dialogHeight="600px";title="";richText="";isAvailableForAi=!0;modules=[];buttonList=[]}class B{id="";name="";type=V.IMAGE;mediaList=[]}class k{id="";type=V.VIDEO;name="";src="";coverSrc="";materialSrc=""}class F{showPlayControl=!0;showSoundControl=!0;defaultVolume=100;loopMode=L.NO_LOOP;defaultPlayAudio=[];audioListData=[]}class G{static LINEAR="linear";static INVERSE="inverse";static EXPONENTIAL="exponential"}class x{loopMode=L.NO_LOOP;autoPlay=!1;volume=1;defaultAudioIndex=0;distanceModel=G.LINEAR;rolloffFactor=1;refDistance=1;maxDistance=10;audioDataList=[]}class H extends C{name="";description="";audioSrc="";duration=0;lyricList=[]}class X{time="00:00";content="";color=c.createColorByStr("#ffffff")}class Y extends C{name="";description="";audioList=[]}class W{static TYPE_2D_TEXT="2d_text";static TYPE_2D_VIDEO="2d_video";static TYPE_2D_IMAGE="2d_image";static TYPE_2D_PANEL="2d_panel";static TYPE_2D_ADVERTISEMENT="2d_advertisement";static TYPE_3D_BOX="3d_box";static TYPE_3D_MODEL="3d_model";static TYPE_TAG="tag"}class K{static NONE="none";static TRANSLATE="translate";static ROTATE="rotate";static SCALE="scale"}class J extends C{layerId="";name="";title=new I;description=new I;isAvailableForAi=!0;isNavigationTarget=!0;ignoreOptimizationAlwaysShow=!1;type=null;scale=new a(1,1,1);position=new a(0,0,0);rotation=new a(0,0,0);originalScale=new a(1,1,1);visible=!0;opacity=1;isEnableAutoMoveCameraToNearWhenClick=!1;responseMouse=!0;markerList=[];showInContentMenu=!0;keywords=[];bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode="";customVisibilitySettings=new Q;transitionAnimationList=[];defaultTransitionAnimationId="";audioSource=new x;showTransitionAnimationId="";hideTransitionAnimationId="";localVariableList=[]}class z{allowAsDestination=!1}class Q{specialSweepVisible=!1;displayRange=0;visibleSweepList=[]}class j{static KEEP_ORIGINAL="keep-original";static FACE_TO_CAMERA_Y="face-to-camera-y";static FACE_TO_CAMERA_XYZ="face-to-camera-xyz"}class Z extends J{onlyFrontVisible=!1;faceToCameraMode=j.KEEP_ORIGINAL;hoverBorderSettings=new O;deformationSettings=new $}class q{static NONE="none";static CURVED_SURFACE="curved-surface";static FOLD_SURFACE="fold-surface"}class ${mode=q.NONE;curvedSurfaceSettings=new ee;foldSurfaceSettings=new te}class ee{curveDegree=1}class te{foldPosition=.5;foldAngle=0;foldInside=!1;foldRadius=.1}class ae extends J{}class se{static STAY_AT_LAST_FRAME="stay-at-last-frame";static JUMP_TO_ORIGINAL_STATE="jump-to-original-state";static LOOP_FROM_ORIGINAL_STATE="loop-from-original-state";static ANIMATE_TO_ORIGINAL_STATE="animate-to-original-state";static LOOP_REVERSE="loop-reverse"}class ne{id="";name="";description="";playCompleteProcessType=se.STAY_AT_LAST_FRAME;keyFrameList=[]}class oe{id="";name="";isTransformTranslate=!1;transformTranslate=new a(0,0,0);isTransformRotate=!1;transformRotate=new a(0,0,0);isTransformScale=!1;transformScale=new a(1,1,1);isOpacity=!1;opacity=1;modelAnimationClipId="";easingAnimationSettings=new m}class ie{static STRING="string";static NUMBER="number";static BOOLEAN="boolean";static ENUM="enum";static COLOR="color";static CSS_COLOR="css_color"}class re{key="";name="";type="string";value="";stringDefaultValue="";numberDefaultValue=0;numberStep=1;numberMinValue=0;numberMaxValue=0;booleanDefaultValue=!1;enumOptions=[];enumDefaultValue="";colorDefaultValue=c.createColorRgba(255,255,255,1);cssColorDefaultValue="#ffffff"}class ce{static GLOBAL="global";static LOCAL="local";static STEP="step";static FLOW="flow";static ABILITY="ability"}class le{type=ce.LOCAL;ownerId="";variableList=[]}class de{static LITERAL="literal";static VARIABLE="variable"}class _e{mode=de.LITERAL;literal;variableScope;variableKey}class Ee{scope=ce.GLOBAL;key=""}class me{static RISING_EDGE_TRIGGER="rising-edge-trigger";static LEVEL_TRIGGER="level-trigger"}class Te extends C{name="";remark="";expression="";expressionMode=me.RISING_EDGE_TRIGGER}class Ce{static XR_VARIABLE_EXPRESSION="xr-variable-expression";static STICKER_ACTIVE_STATE="sticker-active-state";static SPACE_FENCE_USER_IN_STATE="space-fence-user-in-state";static SPACE_FENCE_GROUP_USER_IN_STATE="space-fence-group-user-in-state";static COMPONENT_VISIBLE_STATE="component-visible-state";static LAYER_VISIBLE_STATE="layer-visible-state";static HAMBURGER_MENU_NODE_VISIBLE_STATE="hamburger-menu-node-visible-state"}class pe{static XR_VARIABLE="xr-variable";static COMPONENT_VISIBLE_STATE="component-visible-state";static LAYER_VISIBLE_STATE="layer-visible-state";static MESSAGE_CARD_SHOW_STATE="message-card-show-state";static COMPONENT_2D_PANEL_BUTTON_ENABLED_STATE="component-2d-panel-button-enabled-state";static MONITOR_COMPONENT_VISIBLE_STATE="monitor-component-visible-state";static CANVAS_COMPONENT_VISIBLE_STATE="canvas-component-visible-state";static COMPONENT_2D_PANEL_SCENE_SWITCH="component-2d-panel-scene-switch";static COMPONENT_2D_IMAGE_SOURCE_SWITCH="component-2d-image-source-switch";static COMPONENT_2D_VIDEO_SOURCE_SWITCH="component-2d-video-source-switch";static COMPONENT_3D_MODEL_ANIMATION_CLIP_SWITCH="component-3d-model-animation-clip-switch";static AI_AGENT_ENABLED_STATE="ai-agent-enabled-state";static HAMBURGER_MENU_NODE_VISIBLE_STATE="hamburger-menu-node-visible-state"}class Ae{enabled=!0;name="";remark="";sourceType=Ce.XR_VARIABLE_EXPRESSION;sourceExpression="";sourceId="";reverseSource=!1;targetType=pe.XR_VARIABLE;targetId="";targetOptionTrue="";targetOptionFalse=""}class Oe{static IDLE="idle";static RUNNING="running";static PAUSED="paused";static STOPPED="stopped"}class ge{threadId="";status="idle";completedCycles=0;currentActionIndex=0}class Ie{position=new a(0,0,0);rotation=new a(0,0,0);scale=new a(1,1,1);visible=!0;opacity=1;responseMouse=!0;playingTransitionAnimationId=null;audioPlayingId=null;audioVolume=1;audioLoopMode=L.NO_LOOP;audioPaused=!0}class Se extends Ie{currentSourceId="";autoChangeInterval=0}class Ne extends Ie{currentSourceId="";playing=!1;muted=!1;loopMode=L.NO_LOOP;playbackRate=1}class Le extends Ie{currentSourceId=""}class Re extends Ie{currentSceneId="";buttonEnabledState={}}class ue extends Ie{faceColor=c.createColorRgba(0,255,0,.2);borderColor=c.createColorRgba(0,255,0,.5);hoverFaceColor=c.createColorRgba(0,255,0,.5);hoverBorderColor=c.createColorRgba(0,255,0,.8)}class Pe extends Ie{playingAnimationClipId=null}class Me extends Ie{}class ye{id="";type="text";name="";positionX=0;positionY=0;width=200;height=150;rotation=0;opacity=1;backgroundColor="rgba(255,255,255,0)";hoverStyleEnabled=!1;hoverBackgroundColor="rgba(255,255,255,0)";hoverOpacity=1;clickActionList=[];visible=!0;zIndex=1;radius=0;border="none";paddingX=6;paddingY=6;css={};script="";imageSrc="";imageMode="fill";textContent="";textColor="rgba(255,255,255,1)";textSize=16;textAlign="center";textBold=!1;textItalic=!1;textVerticalAlign="middle";progressBarColor="#4eb931";progressRange=100;progressBarDirection="horizontal";progress="0";videoSrc="";poster="";autoplay=!1;muted=!0;loop=!1;controls=!0;objectFit="cover";iconSrc="";iconPosition="left"}class De{enabled=!0;componentStates={}}class he extends C{variableValue={};activeTriggerPool=[];triggerExecuteCount={};audioCenterState=new we;navigationState=new ve;globalMuted=!1;componentState2dImage={};componentState2dVideo={};componentState2dText={};componentState2dPanel={};componentState3dBox={};componentState3dModel={};componentStateTag={};monitorState={};activeMonitorTab="";canvasState={};layerVisibility={};messageCardShowState={};stickerActiveState={};sweepEnabledState={};backgroundThreadState={};abilityState={};flowScopeValue={};flowStepScopeValue={};enabledAiAgentIds=[];activeAiAgentId=null;hamburgerMenuVisibility={};playerUiSettings={}}class we{playingAudioListId="";playingAudioId="";displayMode="mini"}class ve{isNavigating=!1;destinationType="sweep";destinationSweepId="";destinationPosition=new a(0,0,0);navigationMode="manual"}class be{static BASIC="basic";static CONDITION="condition";static COUNT_LOOP="count_loop";static EXPRESSION_LOOP="expression_loop"}class Ve{actionCategory=be.BASIC;backgroundColorMark="rgba(255,255,255,1)"}class Ue extends Ve{actionCategory=be.BASIC;id="";actionType=Ge.COMPONENT_2D_IMAGE_CHANGE_SOURCE;params=new Xe}class fe{actionCategory=be.CONDITION;ifExpression="";ifActionList=[];elseActionList=[]}class Be{actionCategory=be.COUNT_LOOP;loopCount=1;loopCountRef;actionList=[]}class ke{static BEFORE_ACTION="before_action";static AFTER_ACTION="after_action"}class Fe{actionCategory=be.EXPRESSION_LOOP;checkExpression="";checkExpressionPosition=ke.BEFORE_ACTION;actionList=[]}class Ge{static SYSTEM_COMMON_WAIT="system_common_wait";static COMPONENT_GENERAL_CHANGE_VISIBILITY="component_general_change_visibility";static COMPONENT_GENERAL_CHANGE_TRANSFORM="component_general_change_transform";static COMPONENT_GENERAL_PLAY_TRANSITION_ANIMATION="component_general_play_transition_animation";static COMPONENT_GENERAL_STOP_TRANSITION_ANIMATION="component_general_stop_transition_animation";static COMPONENT_2D_GENERAL_CHANGE_DEFORMATION_SETTINGS="component_2d_general_change_deformation_settings";static COMPONENT_GENERAL_AUDIO_SOURCE_PLAY_CONTROL="component_general_audio_source_play_control";static COMPONENT_GENERAL_AUDIO_SOURCE_PAUSE="component_general_audio_source_pause";static COMPONENT_GENERAL_AUDIO_SOURCE_CHANGE_LOOP_MODE="component_general_audio_source_change_loop_mode";static COMPONENT_2D_IMAGE_CHANGE_SOURCE="component_2d_image_change_source";static COMPONENT_2D_VIDEO_CHANGE_SOURCE="component_2d_video_change_source";static COMPONENT_2D_VIDEO_CHANGE_PLAY_STATE="component_2d_video_change_play_state";static COMPONENT_2D_VIDEO_CHANGE_MUTE_STATE="component_2d_video_change_mute_state";static COMPONENT_2D_TEXT_CHANGE_SOURCE="component_2d_text_change_source";static COMPONENT_2D_PANEL_CHANGE_SCENE="component_2d_panel_change_scene";static COMPONENT_2D_PANEL_BUTTON_CHANGE_ENABLED="component_2d_panel_button_change_enabled";static COMPONENT_3D_BOX_CHANGE_COLOR="component_3d_box_change_color";static COMPONENT_3D_MODEL_PLAY_ANIMATION_CLIP="component_3d_model_play_animation_clip";static COMPONENT_3D_MODEL_STOP_ANIMATION_CLIP="component_3d_model_stop_animation_clip";static INFORMATION_CONTENT_CARD_SHOW="information_content_card_show";static INFORMATION_CONTENT_CARD_CLOSE="information_content_card_close";static INFORMATION_LINK_OPEN="information_link_open";static INFORMATION_LINK_CLOSE="information_link_close";static AUDIO_CENTER_PLAY_LIST="audio_center_play_list";static AUDIO_CENTER_PAUSE="audio_center_pause";static AUDIO_CENTER_PLAYER_CHANGE_DISPLAY_MODE="audio_center_player_change_display_mode";static SWEEP_CHANGE_ENABLED="sweep_change_enabled";static SWEEP_CHANGE_PANORAMA="sweep_change_panorama";static SWEEP_MARKER_CHANGE_ENABLED="sweep_marker_change_enabled";static SWEEP_RESET_TO_DEFAULT="sweep_reset_to_default";static SWEEP_ONLY_ENABLE_CURRENT="sweep_only_enable_current";static CAMERA_MOVE_TO="camera_move_to";static CAMERA_DOLLY_MOVE="camera_dolly_move";static CAMERA_DOLLY_STOP="camera_dolly_stop";static NAVIGATION_START="navigation_start";static NAVIGATION_STOP="navigation_stop";static LOGIC_VARIABLE_MODIFY="logic_variable_modify";static LOGIC_VARIABLE_NUMBER_ADD="logic_variable_number_add";static LOGIC_VARIABLE_NUMBER_SUBTRACT="logic_variable_number_subtract";static LOGIC_VARIABLE_STRING_APPEND="logic_variable_string_append";static LOGIC_VARIABLE_STRING_TRIM_END="logic_variable_string_trim_end";static LOGIC_VARIABLE_STRING_ADVANCED="logic_variable_string_advanced";static LOGIC_VARIABLE_BOOLEAN_TOGGLE="logic_variable_boolean_toggle";static FLOW_ENTER="flow_enter";static FLOW_EXIT="flow_exit";static MONITOR_CHANGE_ENABLED="monitor_change_enabled";static MONITOR_SWITCH_ACTIVE_TAB="monitor_switch_active_tab";static MONITOR_COMPONENT_CHANGE_VISIBILITY="monitor_component_change_visibility";static LAYER_CHANGE_VISIBILITY="layer_change_visibility";static HAMBURGER_MENU_NODE_CHANGE_VISIBILITY="hamburger_menu_node_change_visibility";static CANVAS_COMPONENT_CHANGE_VISIBILITY="canvas_component_change_visibility";static SYSTEM_UI_SETTINGS_CHANGE="system_ui_settings_change";static MESSAGE_CARD_CHANGE_SHOW_STATE="message_card_change_show_state";static TTS_PLAY_VOICE="tts_play_voice";static TTS_REALTIME_STREAM="tts_realtime_stream";static BACKGROUND_THREAD_START="background_thread_start";static BACKGROUND_THREAD_PAUSE="background_thread_pause";static BACKGROUND_THREAD_STOP="background_thread_stop";static AI_AGENT_ACTIVATE="ai_agent_activate";static AI_AGENT_HIDE="ai_agent_hide";static AI_AGENT_TRIGGER_MONOLOGUE="ai_agent_trigger_monologue";static AI_AGENT_TRIGGER_CONVERSATION="ai_agent_trigger_conversation";static SYSTEM_SET_INTERACTIVE_STATE="system_set_interactive_state";static AUDIO_CENTER_SET_VOLUME="audio_center_set_volume";static ABILITY_ENABLE="ability_enable";static ABILITY_STOP="ability_stop";static CLOUD_FORM_SHOW_DIALOG="cloud_form_show_dialog";static CLOUD_FORM_COLLECT_FIELD="cloud_form_collect_field";static CLOUD_FORM_SUBMIT="cloud_form_submit";static CLOUD_FORM_RESET="cloud_form_reset";static HIT_ANALYTICS_EVENT="hit_analytics_event";static POPUP_USER_FORM_SHOW_DIALOG="popup_user_form_show_dialog";static LOGIC_RANDOM_NUMBER="logic_random_number";static LOGIC_RANDOM_COLOR="logic_random_color";static LOGIC_CURRENT_TIME="logic_current_time";static LOGIC_RANDOM_PICK_STRING="logic_random_pick_string";static LOGIC_RANDOM_PICK_NUMBER="logic_random_pick_number";static LOGIC_RANDOM_PICK_BOOLEAN="logic_random_pick_boolean";static LOGIC_RANDOM_PICK_ENUM="logic_random_pick_enum";static LOGIC_RANDOM_PICK_COLOR="logic_random_pick_color";static LOGIC_RANDOM_PICK_CSS_COLOR="logic_random_pick_css_color"}class xe{abilityId="";contextVariableOverrides={};contextVariableOverrideRefs}class He{abilityId=""}class Xe{}class Ye{duration=1e3;durationRef}class We{componentIdList=[];visibilityState=!0;visibilityStateRef}class Ke{componentId="";changeType="translate";value=new a(0,0,0);valueXRef;valueYRef;valueZRef}class Je{componentId="";transitionAnimationId=""}class ze{componentId="";deformationSettings=new $}class Qe{componentId="";changeType="next";sourceId=""}class je{componentId="";changeType="next";sourceId=""}class Ze{componentId="";changeType="next";sourceId="";autoPlay=!1;autoPlayRef;forceUnmute=!1;forceUnmuteRef}class qe{componentId="";play=!0;playRef}class $e{componentId="";mute=!0;muteRef}class et{componentId="";faceColor=c.createColorRgba(0,0,0,1);faceColorRef;borderColor=c.createColorRgba(0,0,0,1);borderColorRef;hoverFaceColor=c.createColorRgba(0,0,0,1);hoverFaceColorRef;hoverBorderColor=c.createColorRgba(0,0,0,1);hoverBorderColorRef}class tt{componentId="";sceneId=""}class at{componentId="";sceneId="";buttonId="";enabled=!0;enabledRef}class st{componentId="";changeType="next";audioIndex=-1;audioId=""}class nt{componentId=""}class ot{componentId="";loopMode=L.NO_LOOP}class it{audioListId="";audioId=""}class rt{displayMode="mini"}class ct{componentId="";animationClipId=""}class lt{destinationType="sweep";componentId="";vrFovId="";fovLink="";fovLinkSnapshotSrc="";fovLinkCameraRotation=new s(0,0);fovLinkSweepId="";sweepId="";navigationMode=y.MANUAL;autoRecalculate=!0;autoRecalculateDistanceThreshold=.5;pathColor=c.createColorByStr("#03b203")}class dt{destinationType="sweep";componentId="";vrFovId="";fovLink="";fovLinkSnapshotSrc="";fovLinkCameraRotation=new s(0,0);fovLinkSweepId="";sweepId="";transitionType=o.FLY;transitionTime=1e3;transitionTimeRef}class _t{dollyPathId=""}class Et{}class mt{sweepIdList=[];enabled=!0;enabledRef;mode="set"}class Tt{sweepId="";panoramaId=""}class Ct{markerIdList=[];enabled=!0;enabledRef;mode="set"}class pt{}class At{}class Ot{contentCardId="";showStyle=U.DRAWER}class gt{url="";urlRef;isOpenWithExternal=!1;isOpenWithExternalRef}class It{variableKey="";variableScope;value="";valueRef}class St{variableKey="";variableScope;value=0;valueRef}class Nt{variableKey="";variableScope;sourceType="fixed";content="";contentRef}class Lt{variableKey="";variableScope;length=1;lengthRef}class Rt{variableKey="";variableScope;expression=""}class ut{variableKey="";variableScope}class Pt{flowId="";forceStopRunning=!1}class Mt{}class yt{monitorId="";enabled=!0;enabledRef}class Dt{tabId=""}class ht{monitorId="";componentIdList=[];visible=!0;visibleRef}class wt{hamburgerMenuNodeId="";componentIdList=[];visible=!0;visibleRef}class vt{layerIdList=[];visible=!0;visibleRef}class bt{nodeIdList=[];visible=!0;visibleRef}class Vt{settingKey="";value=!0;valueRef}class Ut{messageCardIdList=[];showState=!0;showStateRef}class ft{static SIMPLE="simple";static EXPRESSION="expression"}class Bt{voiceId="";textMode="simple";text="";textRef;textExpression="";showSubtitle=!0;waitForComplete=!0;languageCode="";speed=1;componentId=""}class kt{voiceId="";textMode="simple";text="";textRef;textExpression="";showSubtitle=!0;waitForComplete=!1;languageCode="";speed=1;componentId=""}class Ft{threadId=""}class Gt{agentId=""}class xt{agentId=""}class Ht{agentId=""}class Xt{agentId=""}class Yt{interactive=!0;interactiveRef}class Wt{volume=100;volumeRef}class Kt{static LITERAL="LITERAL";static EXPRESSION="EXPRESSION"}class Jt{cloudFormDataKey="";onSubmitSuccessActions=[];onAlreadySubmittedActions=[]}class zt{cloudFormDataKey="";fieldDataKey="";valueMode=Kt.LITERAL;literalValue=null;expression=""}class Qt{cloudFormDataKey="";onSuccessActions=[];onFailActions=[]}class jt{cloudFormDataKey=""}class Zt{static LITERAL="LITERAL";static USER_VARIABLE="USER_VARIABLE";static EXPRESSION="EXPRESSION"}class qt{fieldKey="";valueMode=Zt.LITERAL;literalValue=null;variableKey="";variableScope;expression=""}class $t{analyticsEventDataKey="";fieldBindings=[]}class ea{static STRING="string";static NUMBER="number";static BOOLEAN="boolean";static ENUM="enum";static COLOR="color";static CSS_COLOR="css_color"}class ta{static NUMBER_INPUT="number_input";static NUMBER_SLIDER="number_slider";static NUMBER_SLIDER_VERTICAL="number_slider_vertical";static NUMBER_STEPPER="number_stepper";static NUMBER_STAR_RATING="number_star_rating";static NUMBER_SEGMENT="number_segment";static NUMBER_EMOJI_SCALE="number_emoji_scale";static NUMBER_DIAL="number_dial";static NUMBER_PROGRESS_TAP="number_progress_tap";static NUMBER_CHIP_TILE="number_chip_tile";static STRING_INPUT="string_input";static STRING_TEXTAREA="string_textarea";static STRING_SELECT="string_select";static STRING_AUTOCOMPLETE="string_autocomplete";static STRING_SEGMENT="string_segment";static STRING_RADIO="string_radio";static STRING_TAG="string_tag";static STRING_CARD_GRID="string_card_grid";static STRING_AVATAR_LIST="string_avatar_list";static STRING_COLOR_SWATCH="string_color_swatch";static BOOLEAN_SWITCH="boolean_switch";static BOOLEAN_CHECKBOX="boolean_checkbox";static BOOLEAN_SEGMENT="boolean_segment";static BOOLEAN_THUMB="boolean_thumb";static BOOLEAN_CARD_PAIR="boolean_card_pair";static COLOR_PICKER="color_picker";static COLOR_SWATCH_PICKER="color_swatch_picker";static CSS_COLOR_INPUT="css_color_input";static CSS_COLOR_SWATCH_PICKER="css_color_swatch_picker";static CSS_COLOR_ADVANCED="css_color_advanced"}class aa{static getDefault(e){return"number"===e?ta.NUMBER_INPUT:"boolean"===e?ta.BOOLEAN_SWITCH:"color"===e?ta.COLOR_PICKER:"css_color"===e?ta.CSS_COLOR_INPUT:ta.STRING_INPUT}}class sa{label="";value="";iconUrl="";imageUrl="";description="";badge="";color="";disabled=!1}class na{variant=ta.STRING_INPUT;min=null;max=null;step=null;precision=null;sliderShowTicks=!1;sliderActiveColor="";sliderTrackColor="";sliderShowTooltip=!0;starCount=5;starAllowHalf=!1;starIcon="star";starCustomIconUrl="";starActiveColor="";starInactiveColor="";starSize=32;starShowValueLabel=!1;emojiScaleEmojis=[];emojiScaleSize=36;emojiScaleAnimateOnSelect=!0;dialSize=120;dialActiveColor="";dialShowValueInCenter=!0;dialStartAngle=135;progressTapHeight=20;progressTapGradientFrom="";progressTapGradientTo="";progressTapShowMarks=!1;chipTileSize=56;chipTileColumns=5;chipTileActiveColor="";options=[];textareaRows=3;textareaMaxLength=null;textareaShowCount=!1;tagMode="pill";cardGridColumns=2;cardGridImageRatio="4:3";cardGridShowDescription=!0;avatarListShowSubtitle=!0;avatarListSize=40;colorSwatchSize=32;colorSwatchShape="square";colorSwatchColumns=6;booleanTrueLabel="";booleanFalseLabel="";booleanTrueIconUrl="";booleanFalseIconUrl="";booleanTrueColor="";booleanFalseColor="";colorSwatchOptions=[];cssColorSwatchOptions=[];borderRadius=null;accentColor=""}class oa{fieldKey="";label="";description="";placeholder="";required=!0;dataType=ea.STRING;defaultValue=null;control=new na;boundVariableScope="";boundVariableKey=""}class ia{title="";description="";submitButtonText="";cancelButtonText="";showCancelButton=!0;blockInteraction=!0;closeOnOverlayClick=!1;synchronous=!0;fields=[];onSubmitSuccessActions=[];onCancelActions=[]}class ra{target=new Ee;min=0;max=1;integerOnly=!1}class ca{static RANDOM="random";static COOL="cool";static WARM="warm";static PASTEL="pastel";static VIVID="vivid";static GRAY="gray"}class la{target=new Ee;palette=ca.RANDOM;randomAlpha=!1;fixedAlpha=1}class da{static ISO="iso";static UNIX_MS="unix_ms";static UNIX_S="unix_s";static DATE_STRING="date_string";static TIME_STRING="time_string"}class _a{target=new Ee;outputType=da.ISO}class Ea{target=new Ee;candidates=[]}class ma{target=new Ee;candidates=[]}class Ta{target=new Ee;candidates=[]}class Ca{target=new Ee;candidates=[]}class pa{target=new Ee;candidates=[]}class Aa{target=new Ee;candidates=[]}const Oa={star:"M12 2.5l2.92 6.04 6.66.96-4.82 4.69 1.14 6.62L12 17.7l-5.9 3.11 1.14-6.62L2.42 9.5l6.66-.96L12 2.5z",heart:"M12 21s-7.5-4.6-9.5-9.4C1.1 8 3.5 4 7.5 4c2 0 3.6 1.1 4.5 2.6C12.9 5.1 14.5 4 16.5 4c4 0 6.4 4 5 7.6C19.5 16.4 12 21 12 21z",thumb:"M9 21h8.5a2 2 0 002-1.6l1.4-7A2 2 0 0019 10h-5l.7-3.6a2 2 0 00-3.5-1.7L7 10H4a1 1 0 00-1 1v9a1 1 0 001 1h5z",like:"M2 9h4v12H2V9zm6.5 12V11l4.6-7.4a1.5 1.5 0 012.7 1.1L14.5 9H20a2 2 0 012 2.3l-1.5 8a2 2 0 01-2 1.7H8.5z",fire:"M12 2.5s-1 3.5-3 5.5-3 3.8-3 6a6 6 0 1012 0c0-2.5-1.5-3.5-2.5-5 0 0-1 2-2.5 2 1-2.5 0-6.5-1-8.5z",crown:"M3 8l4 3 5-6 5 6 4-3-2 11H5L3 8zm2 13h14v2H5v-2z",flower:"M12 12m0 0a3 3 0 116 0 3 3 0 11-6 0zm-2-7a3 3 0 015 2.6 3 3 0 015-.4 3 3 0 01-.6 5 3 3 0 011 4.7 3 3 0 01-5 .3 3 3 0 01-5-2.6 3 3 0 01-5 .4 3 3 0 01.6-5 3 3 0 01-1-4.7 3 3 0 015-.3z"},ga=["star","heart","thumb","like","fire","crown","flower"];class Ia{static STAR="star";static HEART="heart";static THUMB="thumb";static LIKE="like";static FIRE="fire";static CROWN="crown";static FLOWER="flower"}const Sa="#FFB800",Na="#E0E0E0",La={thumbUp:"M9 21h8.5a2 2 0 002-1.6l1.4-7A2 2 0 0019 10h-5l.7-3.6a2 2 0 00-3.5-1.7L7 10H4a1 1 0 00-1 1v9a1 1 0 001 1h5z",thumbDown:"M15 3H6.5a2 2 0 00-2 1.6l-1.4 7A2 2 0 005 14h5l-.7 3.6a2 2 0 003.5 1.7L17 14h3a1 1 0 001-1V4a1 1 0 00-1-1h-5z",check:"M5 12.5l5 5 9-11",cross:"M5 5l14 14m0-14L5 19"};class Ra extends C{name="";introduce="";code="";adItemList=[]}class ua{type="image";name="";introduce="";imageSeconds=5;contentSrc="";chromaKeySettings=new _}class Pa{isAiEnabled=!0;welcomeMessage=new I}class Ma extends C{assetDataKey="";position=new a(0,0,0);rotation=new a(0,0,0);scale=new a(1,1,1);color=c.createColorRgb(20,20,20);name="";description="";snapshotSrc="";bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode=""}class ya{enabledShare=!0;enabledFullScreen=!0;enabledSceneBtn=!0;enabledFovBtn=!0;enabledD3ModeBtn=!0;enabledFloorPlanModeBtn=!0;enabledFloorSelectBtn=!0;enabledMeasurementBtn=!0;enabledFlowBtn=!1;enabledMinimap=!0;enabledStaffLogin=!1;enabledGuestLogin=!1;enabledHamburgerMenu=!1}class Da{enabledVrInfoTemplate=!1;vrInfoTemplateDataKey="";vrInfoTemplateItemValueList=[]}class ha{templateItemDataKey="";templateItemValue=""}class wa{static VIDEO="video";static IMAGE="image"}class va{static FILL="fill";static CONTAIN="contain";static COVER="cover";static NONE="none";static SCALE_DOWN="scale-down"}class ba{static PLAY="play";static TEXT="text"}class Va{coverImageSrc="";coverVideoSrc="";coverBackgroundColor=c.createColorRgba(255,255,255,1);coverBackgroundType=wa.IMAGE;coverContentFitType=va.CONTAIN;coverMaskColor=c.createColorRgba(255,255,255,.5);coverMaskBlur=10;coverTitle="";coverDescription="";enabledEnterVrButton=!1;enterVrButtonType=ba.PLAY;enterButtonBackgroundColor=c.createColorRgba(64,158,255,1);enterButtonForegroundColor=c.createColorRgba(255,255,255,1);enterButtonShadowColor=c.createColorRgba(64,158,255,1);textButtonContent="Enter";constructor(){this.coverBackgroundColor=c.createColorRgba(0,0,0,1),this.coverBackgroundType=wa.IMAGE,this.coverContentFitType=va.CONTAIN,this.coverMaskColor=c.createColorRgba(0,0,0,.5),this.coverMaskBlur=10,this.enabledEnterVrButton=!1,this.enterVrButtonType=ba.PLAY,this.enterButtonBackgroundColor=c.createColorRgba(64,158,255,1),this.enterButtonForegroundColor=c.createColorRgba(255,255,255,1),this.enterButtonShadowColor=c.createColorRgba(64,158,255,1),this.textButtonContent="Enter"}}class Ua{vrInitCompleteActionList=[];vrInitLocalVariableList=[];arInitCompleteActionList=[];arInitLocalVariableList=[];allInitCompleteActionList=[];allInitLocalVariableList=[];variablePreFillEnabled=!1;variablePreFillList=[];enterVrButtonTitle=new I;description=new I}class fa{variableKey="";defaultValue="";title="";hint="";required=!0}const Ba="#262626",ka="item";class Fa{static GROUP="group";static TEXT_ITEM="text_item";static IMAGE_ITEM="image_item";static VIDEO_ITEM="video_item";static WEBVIEW_ITEM="webview_item";static RICH_TEXT_ITEM="rich_text_item";static CANVAS_ITEM="canvas_item"}class Ga{static FLOATING="floating";static PUSHED="pushed"}class xa extends C{nodeType=Fa.TEXT_ITEM;name="";color=Ba;backgroundColor="";visible=!0}class Ha extends xa{title=new I}class Xa extends Ha{constructor(){super(),this.nodeType=Fa.TEXT_ITEM}icon="";actionList=[]}class Ya{url="";actionList=[]}class Wa extends Ha{constructor(){super(),this.nodeType=Fa.IMAGE_ITEM}description=new I;imageList=[];autoplay=!0;intervalMs=3e3}class Ka{url="";poster=""}class Ja extends Ha{constructor(){super(),this.nodeType=Fa.VIDEO_ITEM}description=new I;videoList=[];autoplay=!1;muted=!0;loop=!1}class za extends Ha{constructor(){super(),this.nodeType=Fa.WEBVIEW_ITEM}url="";height=240;allowFullscreen=!1}class Qa extends Ha{constructor(){super(),this.nodeType=Fa.GROUP}icon="";children=[]}function ja(){return{type:"doc",content:[]}}class Za extends xa{constructor(){super(),this.nodeType=Fa.RICH_TEXT_ITEM}content={type:"doc",content:[]}}class qa extends Ha{constructor(){super(),this.nodeType=Fa.CANVAS_ITEM}designWidth=380;height=240;canvasBackgroundColor="rgba(0, 0, 0, 0.5)";componentList=[]}class $a{drawerTitle=new I;drawerDescription=new I;nodeList=[];pcLayoutMode=Ga.FLOATING;backgroundColor="";pcWidth=380}function es(e){e&&Array.isArray(e.nodeList)&&ts(e.nodeList)}function ts(e){if(Array.isArray(e))for(const t of e)t&&"object"==typeof t&&(t.nodeType===ka&&(t.nodeType=Fa.TEXT_ITEM),t.nodeType===Fa.GROUP&&Array.isArray(t.children)&&ts(t.children))}class as{static buildVrContentData(e,t,a,s){const n=new rs(e,t);return n.vrCoverSettings.coverTitle=a,n.vrCoverSettings.coverImageSrc=s,n}}class ss{isDirectToInside=!1;firstSweepPose=new i;enterFovImageSrc="";enterParams=""}class ns{min=new a(0,0,0);max=new a(0,0,0);size=new a(0,0,0)}class os{title="";description=""}class is{mapCode="";isSingleFrame=!1;frameCount=5;frameInterval=800;enableBlurCheck=!0;confidenceThreshold=.5;backgroundCorrectionInterval=30;arNearDistanceMax=35;arRefreshMoveThreshold=5}class rs{version;vrDataKey="";mpModelId="";vrUnicode="";vrCoverSettings=new Va;vrPlayerUiSettings=new ya;hamburgerMenu=new $a;vrInfoTemplateSettings=new Da;arMultisetSettings=new is;cameraEnterSettings=new ss;sweepMarkerList=[];componentMarkerList=[];worldSizeInfo=new ns;introduceItemList=[];vrFovList=[];vrContentCardList=[];vrFloorList=[];audioCenter=new F;vrLightList=[];vrLayerList=[];vrViewList=[];sweepList=[];componentList=[];trimmerList=[];spaceFenceList=[];spaceFenceGroupList=[];abilityList=[];abilityGroupList=[];vrFlowList=[];vrStickerList=[];vrTargetList=[];vrTargetGroupList=[];vrObstacleList=[];vrObstacleGroupList=[];vrWormholeList=[];vrWormholeGroupList=[];vrAdChannelList=[];prepareSettings=new Ua;vrAiSettings=new Pa;aiAgentList=[];variableList=[];variableExpressionWatcherList=[];stateBindingsList=[];backgroundThreadList=[];cameraDollyPathList=[];monitorList=[];messageCardList=[];triggerList=[];unityNavigationModeList=[];unityNavigationParams=new u;xrVirtualFloorList=[];navigationAdConfigList=[];constructor(e,t){this.mpModelId=e,this.vrUnicode=t}}class cs extends C{name="";sequence=0;originalFloorPlanImageSrc="";mapSettings=new ls}class ls{floorId="";mapImageSrc="";widthScale=1;heightScale=1;horizontalOffset=0;verticalOffset=0;rotation=0}class ds{static COMPONENT_CREATED="component_created";static COMPONENT_SHOW="component_show";static COMPONENT_HIDE="component_hide";static CLICK="click";static MOUSE_ENTER="mouse_enter";static MOUSE_LEAVE="mouse_leave";static PLAY_START="play_start";static PLAY_FINISH="play_finish";static ENTER="enter";static LEAVE="leave";static PANEL_BUTTON_CLICK="panel_button_click";static PANEL_ANSWER_CORRECT="panel_answer_correct";static PANEL_ANSWER_WRONG="panel_answer_wrong";static VARIABLE_MODIFIED="variable_modified";static EXPRESSION_WATCHER_TRIGGERED="expression_watcher_triggered";static MONITOR_COMPONENT_CLICK="monitor_component_click";static STICKER_ACTIVATED="sticker_activated";static STICKER_DEACTIVATED="sticker_deactivated";static VR_STARTED="vr_started";static ALL_COMPONENTS_CREATED="all_components_created"}class _s{static COMPONENT_TAG="component_tag";static COMPONENT_2D_TEXT="component_2d_text";static COMPONENT_2D_ADVERTISEMENT="component_2d_advertisement";static COMPONENT_2D_VIDEO="component_2d_video";static COMPONENT_2D_IMAGE="component_2d_image";static COMPONENT_2D_PANEL="component_2d_panel";static COMPONENT_3D_BOX="component_3d_box";static COMPONENT_3D_MODEL="component_3d_model";static LOGIC_VARIABLE="logic_variable";static LOGIC_EXPRESSION_WATCHER="logic_expression_watcher";static SPACE_FENCE="space_fence";static SPACE_FENCE_GROUP="space_fence_group";static MONITOR_COMPONENT="monitor_component";static STICKER="sticker";static SYSTEM="system"}const Es={[_s.COMPONENT_TAG]:[ds.CLICK,ds.COMPONENT_CREATED,ds.COMPONENT_SHOW,ds.COMPONENT_HIDE,ds.MOUSE_ENTER,ds.MOUSE_LEAVE],[_s.COMPONENT_2D_TEXT]:[ds.CLICK,ds.COMPONENT_CREATED,ds.COMPONENT_SHOW,ds.COMPONENT_HIDE,ds.MOUSE_ENTER,ds.MOUSE_LEAVE],[_s.COMPONENT_2D_ADVERTISEMENT]:[ds.CLICK,ds.COMPONENT_CREATED,ds.COMPONENT_SHOW,ds.COMPONENT_HIDE,ds.MOUSE_ENTER,ds.MOUSE_LEAVE],[_s.COMPONENT_2D_VIDEO]:[ds.CLICK,ds.COMPONENT_CREATED,ds.COMPONENT_SHOW,ds.COMPONENT_HIDE,ds.MOUSE_ENTER,ds.MOUSE_LEAVE,ds.PLAY_START,ds.PLAY_FINISH],[_s.COMPONENT_2D_IMAGE]:[ds.CLICK,ds.COMPONENT_CREATED,ds.COMPONENT_SHOW,ds.COMPONENT_HIDE,ds.MOUSE_ENTER,ds.MOUSE_LEAVE],[_s.COMPONENT_2D_PANEL]:[ds.PANEL_BUTTON_CLICK,ds.PANEL_ANSWER_CORRECT,ds.PANEL_ANSWER_WRONG,ds.COMPONENT_CREATED,ds.COMPONENT_SHOW,ds.COMPONENT_HIDE],[_s.COMPONENT_3D_BOX]:[ds.CLICK,ds.COMPONENT_CREATED,ds.COMPONENT_SHOW,ds.COMPONENT_HIDE,ds.MOUSE_ENTER,ds.MOUSE_LEAVE],[_s.COMPONENT_3D_MODEL]:[ds.CLICK,ds.COMPONENT_CREATED,ds.COMPONENT_SHOW,ds.COMPONENT_HIDE,ds.MOUSE_ENTER,ds.MOUSE_LEAVE,ds.PLAY_START,ds.PLAY_FINISH],[_s.LOGIC_VARIABLE]:[ds.VARIABLE_MODIFIED],[_s.LOGIC_EXPRESSION_WATCHER]:[ds.EXPRESSION_WATCHER_TRIGGERED],[_s.SPACE_FENCE]:[ds.ENTER,ds.LEAVE],[_s.SPACE_FENCE_GROUP]:[ds.ENTER,ds.LEAVE],[_s.MONITOR_COMPONENT]:[ds.MONITOR_COMPONENT_CLICK],[_s.STICKER]:[ds.STICKER_ACTIVATED,ds.STICKER_DEACTIVATED],[_s.SYSTEM]:[ds.VR_STARTED,ds.ALL_COMPONENTS_CREATED]};class ms{source=_s.COMPONENT_TAG;sourceId="";type=ds.ENTER;editorParams={}}class Ts extends C{createSourceType=_s.COMPONENT_2D_IMAGE;createSourceId="";name="";signal=new ms;actionList=[];triggerTimesLimit=-1;localVariableList=[];constructor(){super()}}class Cs{static DRAFT="draft";static PUBLISHED="published"}class ps{id="";name="";description="";keywords=[];status=Cs.DRAFT;startStepId="";stepList=[];canvasData="";flagImageSrc="";flagImageSize=new s(1,1);flowScopeVariableList=[]}class As{static START="start";static FINISH="finish";static GENERAL="general";static CONDITION="condition"}class Os{static NORMAL="normal";static BUTTONS_ONLY="buttons_only";static NONE="none"}class gs{id="";type=As.GENERAL;name="";title="";description="";showArriveDescription=!1;arriveDescription="";note="";flagImageSrc="";flagImageSize=new s(1,1);iconSrc="";stepBarStyle=Os.NORMAL;showStepBarDelay=0;buttonList=[];enterActionList=[];positionSettings=new Ns;arriveRadius=5;arriveActionList=[];triggerList=[];finishInjectTriggerList=[];startCardNextStepEndpointSettings=new Rs;conditionExpression="";conditionTrueEndpointSettings=new Rs;conditionFalseEndpointSettings=new Rs;enterActionCompleteEndpointSettings=new Rs;arriveActionCompleteEndpointSettings=new Rs;stepScopeVariableList=[]}class Is{actionList=[];onlyFirstArrive=!1;action}class Ss{static NONE="none";static SWEEP="sweep";static COMPONENT="component";static FOV_LINK="fov_link";static VR_FOV="vr_fov"}class Ns{type=Ss.NONE;componentId="";fovLink="";fovLinkDataKey="";fovLinkSnapshotSrc="";sweepId="";rotationX=0;rotationY=0;enableDirectLocate=!1;enableNavigateAgain=!1;gotoPositionMethod=A.NAVIGATION_TO_MANUAL;vrFovId="";moveSpeed=0;pauseInterval=0}class Ls{destroyTriggerOnLeaveCurrenStep=!0;trigger=new Ts;nextStepEndpointSettings=new Rs}class Rs{id="";enabled=!1;nextStepId="";lineColor=c.createColorByStr("#888888")}class us extends C{name="";description="";isAvailableForAi=!0;src="";showInContentMenu=!0;cameraMode=n.INSIDE;cameraPose=new r}class Ps extends C{name="";description="";keywords=[];visible=!0;children=[]}class Ms extends C{type;color=c.createColorRgb(255,255,255);enabled=!0;name="";intensity=1;floorIdList=[]}class ys extends Ms{type="ambient"}class Ds extends Ms{type="directional";position=new a(0,1,0);target=new a(0,0,0)}class hs extends Ms{type="point";position=new a(0,1,0);distance=0;decay=1}class ws{static COMPONENT_MARKER="component_marker";static SWEEP_MARKER="sweep_marker"}class vs extends C{name="";description="";keywords=[];color=c.createColorRgba(0,0,0,1);type=ws.COMPONENT_MARKER}class bs{id="";name="";description="";keywords=[];color=c.createColorRgba(0,0,0,1);markerType=ws.COMPONENT_MARKER;markers=[]}class Vs{static M="m";static CM="cm";static MM="mm"}class Us{static M2="m2";static CM2="cm2"}class fs extends C{name="";description="";visible=!0;enabledArea=!0;pointList=[];appearanceThemeColor=c.createColorRgba(255,255,255,1);area=0;distanceUnit=Vs.M;areaUnit=Us.M2}class Bs{id="";position=new a(0,0,0);normal=new a(0,0,0);distance=0}class ks extends C{name="";introduce="";targetArrowImageSrc="";targetArrowImageSize=new s(1,1);targetArrowImageYOffset=.6;targetArrowImageYOffsetDynamic=.4;targetArrowAdPositionOffsetY=1.5;targetArrowAdSize=new s(1,.75);targetArrowShowAdDistance=20;targetArrowAdChannelId="";leadBotAdPositionOffset=new a(0,1.5,0);leadBotAdSize=new s(1,.75);leadBotAdChannelId=""}class Fs extends C{groupId="default";name="";description="";scale=new a(1,1,1);position=new a(0,0,0);rotation=new a(0,0,0);originalScale=new a(1,1,1);bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode=""}class Gs extends C{name="";enabled=!0;description=""}class xs extends C{dataKey="";position=new a(0,0,0);rotation=new a(0,0,0);noteDataKey="";noteType="";noteIssueState=""}class Hs extends C{groupId="default";name="";description="";scale=new a(1,1,1);position=new a(0,0,0);rotation=new a(0,0,0);bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode="";enterKeepSeconds=0;leaveKeepSeconds=0}class Xs extends C{name="";description="";cubeFaceColor=c.createColorRgba(255,255,0,.3)}class Ys{static DISTANCE="distance";static VISIBLE="visible";static VISIBLE_AND_DISTANCE="visible_and_distance"}class Ws extends C{position=new a(0,0,0);rotation=new a(0,0,0);stemLength=.2;color=c.createColorRgb(20,20,20);name="";snapshotSrc="";activateType=Ys.VISIBLE_AND_DISTANCE;activateDistance=5;activeNeedStaySeconds=0;inactiveNeedStaySeconds=0;bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode=""}class Ks extends C{no=1;name="";description="";isAvailableForAi=!0;isVirtual=!1;alignmentType=Js.ALIGNED;enabled=!0;disabledInMatterport=!1;floorId="";neighbors=[];placementType=zs.AUTO;position=new a(0,0,0);rotation=new a(0,0,0);pointerPosition=new a(0,0,0);markerList=[];keywords=[];panoramaData=new Zs;contentCardList=[]}class Js{static ALIGNED="aligned";static UNALIGNED="unaligned"}class zs{static AUTO="auto";static MANUAL="manual";static UNPLACED="unplaced"}class Qs{static IMAGE="image";static VIDEO="video"}class js{static NONE="none";static SAME_TO_INSIDE="same_to_inside"}class Zs{default="original";sourceList=[];ballExternalViewMode=js.NONE}class qs{id="";type=Qs.IMAGE;name="";description="";keywords=[];imageSrc="";videoSrc="";muted=!0;loop=!0;opacity=1;zoomLevel=1;rotationCorrection=new a(0,0,0);allowSeeSweep=!0;allowSeeComponents=!0}class $s{primaryColor=new d;secondaryColor=new d;maskColor=new d;barMaskColor=new d}class en extends C{name="";position=new a(0,0,0);scale=new a(1,1,1);rotation=new a(0,0,0);enabledTrimSpace=!0;enabledTrimComponent=!1;discardContents=!0;activeInPanoMode=!0}class tn extends C{startY=-99999;endY=99999;name="";floorPlanImageSrc="";floorCode="";floorPlanPointList=[new s(0,0),new s(0,0),new s(0,0)];vrSpacePointList=[new a(0,0,0),new a(0,0,0),new a(0,0,0)]}class an extends C{name="";description="";type=sn.BASIC;bindLayerIdList=[]}class sn{static GENERAL="general";static BASIC="basic"}class nn extends C{groupId="default";position=new a(0,0,0);rotation=new a(0,0,0);stemLength=.2;color=c.createColorRgb(205,133,63);name="";title=new I;bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode=""}class on extends C{name="";enabled=!0;description=""}class rn extends C{groupId="default";position=new a(0,0,0);rotation=new a(0,0,0);stemLength=.2;color=c.createColorRgb(34,139,34);name="";code="";title=new I;description=new I;showToUser=!0;importable=!1;destinationToAnotherTarget=!1;destinationTargetId="";bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode=""}class cn extends C{name="";enabled=!0;description="";useNavigationAdConfigId=""}class ln{static IMAGE="image";static TEXT="text";static PROGRESS_BAR="progress-bar";static VIDEO="video";static BUTTON="button"}class dn{static CONTAIN="contain";static COVER="cover";static FILL="fill";static SCALE_DOWN="scale-down";static NONE="none"}class _n{static LEFT="left";static CENTER="center";static RIGHT="right"}class En{static TOP="top";static MIDDLE="middle";static BOTTOM="bottom"}class mn{static HORIZONTAL="horizontal";static VERTICAL="vertical"}class Tn{static CONTAIN="contain";static COVER="cover";static FILL="fill";static NONE="none"}class Cn{static LEFT="left";static RIGHT="right";static TOP="top"}class pn extends C{type=ln.TEXT;name="";remark="";width=200;height=150;rotation=0;opacity=1;backgroundColor="rgba(255,255,255,0)";hoverStyleEnabled=!1;hoverBackgroundColor="rgba(255,255,255,0)";hoverOpacity=1;visible=!0;zIndex=1;radius=0;border="none";paddingX=6;paddingY=6;clickActionList=[];css={};script=""}class An extends pn{type=ln.IMAGE;imageSrc="";imageMode=dn.FILL}class On extends pn{type=ln.TEXT;width=150;height=30;positionX=0;positionY=0;textContent="";textColor="rgba(255,255,255,1)";textSize=16;textVerticalAlign=En.MIDDLE;textAlign=_n.CENTER;textBold=!1;textItalic=!1}class gn extends pn{type=ln.PROGRESS_BAR;width=150;height=30;progressBarColor="#4eb931";progressRange=100;progressBarDirection=mn.HORIZONTAL;progress="0"}class In extends pn{type=ln.VIDEO;width=240;height=135;videoSrc="";poster="";autoplay=!1;muted=!0;loop=!1;controls=!0;objectFit=Tn.COVER}class Sn extends pn{type=ln.BUTTON;width=120;height=36;radius=999;paddingX=14;paddingY=8;backgroundColor="#1677ff";hoverBackgroundColor="#4096ff";textContent="";textColor="rgba(255,255,255,1)";textSize=14;textBold=!1;textItalic=!1;iconSrc="";iconPosition=Cn.LEFT}class Nn extends C{name="";remark="";title="";description="";icon="";size=new s(360,270);defaultEnabled=!0;backgroundColor=c.createColorRgba(0,0,0,.5);componentList=[]}class Ln extends C{name="";remark="";iconSrc="";title="";content="";buttonList=[]}class Rn extends C{name="";remark="";autoExecuteOnBoot=!1;executeCount=0;actionList=[];interval=1e3;localVariableList=[]}class un{componentId="";description=""}class Pn{targetId="";description=""}class Mn{variableKey="";description=""}class yn{stickerId="";canBeActivated=!0;description=""}class Dn{spaceFenceId="";canBeActivated=!0;description=""}class hn{spaceFenceGroupId="";canBeActivated=!0;description=""}class wn{backgroundThreadId="";description=""}class vn{cameraDollyPathId="";description=""}class bn{abilityId="";description=""}class Vn{contentCardId="";description=""}class Un{vrFovId="";description=""}class fn{cloudFormDataKey="";description="";autoPromptToFill=!1}class Bn{knowledgeBaseDataKey="";description=""}class kn{analyticsEventDataKey="";description=""}class Fn{rolePrompt="";tonePrompt="";taskPrompt="";abilityPrompt="";limitPrompt="";behaviorRulePrompt="";greetingPrompt="";warmUpPrompt=""}class Gn{static FAST="fast";static HARD="hard";static EXPERT="expert"}class xn extends C{name="";description="";promptContent=""}class Hn extends C{name="";autoActivate=!1;enableVoiceOutput=!1;voiceOutputComponentId="";enableVoiceInput=!1;remark="";roleName="";rolePromptSettings=new Fn;skillPromptList=[];effortLevel=Gn.FAST;useComponentList=[];useTargetList=[];useVariableList=[];useStickerList=[];useSpaceFenceList=[];useSpaceFenceGroupList=[];useBackgroundThreadList=[];useCameraDollyPathList=[];useAbilityList=[];useKnowledgeBaseList=[];useFovList=[];useContentCardList=[];useCloudFormList=[];useAnalyticsEventList=[]}class Xn{sweepId="";needCustomRotation=!1;customRotationX=0;customRotationY=0;moveTime=1e3;stayTime=500}class Yn extends C{name="";nodeList=[];destinationType="custom";vrFovId="";fovLinkDataKey="";fovLinkSweepId="";fovLinkCameraRotationX=0;fovLinkCameraRotationY=0;fovLinkSnapshotSrc="";destinationSweepId="";destinationRotationX=0;destinationRotationY=0;destinationSnapshotSrc="";finalMoveSpeed=700;disableVrControl=!0;runningPromptText=""}class Wn extends C{name="";remark=""}class Kn extends C{abilityGroupId="";autoExecuteOnBoot=!1;name="";remark="";description="";contextVariableList=[];activeActionList=[];activeActionListLocalVariableList=[];keeping=!1;triggerList=[];stopActionList=[];stopActionListLocalVariableList=[]}class Jn{static IMAGE="image";static TEXT="text";static PROGRESS_BAR="progress-bar";static VIDEO="video";static BUTTON="button"}class zn{static CONTAIN="contain";static COVER="cover";static FILL="fill";static SCALE_DOWN="scale-down";static NONE="none"}class Qn{static LEFT="left";static CENTER="center";static RIGHT="right"}class jn{static TOP="top";static MIDDLE="middle";static BOTTOM="bottom"}class Zn{static HORIZONTAL="horizontal";static VERTICAL="vertical"}class qn{static CONTAIN="contain";static COVER="cover";static FILL="fill";static NONE="none"}class $n{static LEFT="left";static RIGHT="right";static TOP="top"}class eo extends C{type=Jn.TEXT;name="";remark="";width=200;height=60;positionX=0;positionY=0;rotation=0;opacity=1;visible=!0;zIndex=1;backgroundColor="rgba(255,255,255,0)";hoverStyleEnabled=!1;hoverBackgroundColor="rgba(255,255,255,0)";hoverOpacity=1;radius=0;border="none";paddingX=6;paddingY=6;clickActionList=[];css={};script=""}class to extends eo{type=Jn.IMAGE;imageSrc="";imageMode=zn.FILL}class ao extends eo{type=Jn.TEXT;width=150;height=30;textContent="";textColor="rgba(255,255,255,1)";textSize=16;textVerticalAlign=jn.MIDDLE;textAlign=Qn.CENTER;textBold=!1;textItalic=!1}class so extends eo{type=Jn.PROGRESS_BAR;width=150;height=30;progressBarColor="#4eb931";progressRange=100;progressBarDirection=Zn.HORIZONTAL;progress="0"}class no extends eo{type=Jn.VIDEO;width=240;height=135;videoSrc="";poster="";autoplay=!1;muted=!0;loop=!1;controls=!0;objectFit=qn.COVER}class oo extends eo{type=Jn.BUTTON;width=120;height=36;radius=999;paddingX=14;paddingY=8;backgroundColor="#1677ff";hoverBackgroundColor="#4096ff";textContent="";textColor="rgba(255,255,255,1)";textSize=14;textBold=!1;textItalic=!1;iconSrc="";iconPosition=$n.LEFT}class io extends Z{type=W.TYPE_2D_ADVERTISEMENT;adChannelId=""}class ro extends Z{type=W.TYPE_2D_IMAGE;sourceList=[];autoChangeInterval=0;currentImageIndex=0}class co{id="";src="";name="";description="";aspectRatio=1;chromaKeySettings=new _}class lo{static MENU="menu";static ANSWERING="answering";static ENUM_MODIFIER="enum-modifier"}class _o extends Z{type=W.TYPE_2D_PANEL;sceneDataList=[];defaultSceneId=""}class Eo{id="";mode=lo.MENU;name="";description="";buttonDataList=[];textDataList=[];imageDataList=[];answeringModeSettings=new mo;enumModifierModeSettings=new To;style=new No;snapshotImageSrc=""}class mo{confirmButton=new Io;correctButtonIdList=[]}class To{variableKey=""}class Co{static TEXT="text";static IMAGE="image";static BUTTON="button"}class po{id="";name="";type=Co.TEXT;style=new Lo}class Ao{static TEXT="text";static IMAGE="image";static TEXT_LEFT_IMAGE_RIGHT="text_left_image_right";static IMAGE_LEFT_TEXT_RIGHT="image_left_text_right";static IMAGE_TOP_TEXT_BOTTOM="image_top_text_bottom";static TEXT_TOP_IMAGE_BOTTOM="text_top_image_bottom"}class Oo extends po{type=Co.IMAGE;src="";imageMode="fill"}class go extends po{type=Co.TEXT;richText=""}class Io extends po{type=Co.BUTTON;name="";enumOptionValue="";enabled=!0;buttonType=Ao.TEXT;buttonText="";buttonImageSrc="";buttonImageWidth=40;buttonImageHeight=40;buttonImageTextSpacing=10;hoverMaskColor=c.createColorRgba(255,255,255,.5);hoverBorderColor=c.createColorRgba(255,255,255,1);hoverBorderWidth=1;selectedMaskColor=c.createColorRgba(0,255,0,.2);selectedBorderColor=c.createColorRgba(50,205,50,.7);selectedBorderWidth=3;disabledMaskColor=c.createColorRgba(0,0,0,.65);disabledBorderColor=c.createColorRgba(100,100,100,.5);disabledBorderWidth=2;disabledClickTip=new I}class So{width=640;height=480;borderRadius=10;opacity=1;backgroundColor=c.createColorRgba(0,0,0,0);borderColor=c.createColorRgba(0,0,0,1);borderWidth=0;borderStyle="solid"}class No extends So{paddingX=10;paddingY=10}class Lo extends So{x=0;y=0;zIndex=10}class Ro{static LEFT="left";static CENTER="center";static RIGHT="right"}class uo{static TOP="top";static CENTER="center";static BOTTOM="bottom"}class Po{static BASIC="basic";static MARQUEE="marquee"}class Mo extends Z{type=W.TYPE_2D_TEXT;sourceList=[];mode=Po.BASIC;backgroundColor=c.createColorRgba(0,0,0,.2);fontFamily="";textColor=c.createColorRgba(255,255,255,1);paddingX=8;paddingY=4;borderRadius=5;fontSize=20;horizontalAlign="left";verticalAlign="top";currentSourceIndex=0;basicModeSettings=new Do;marqueeModeSettings=new ho}class yo{id="";textContent="2D Text";description=""}class Do{changeInterval=0}class ho{autoChange=!0;speed=50;interval=1;width=15}class wo extends Z{type=W.TYPE_2D_VIDEO;sourceList=[];autoPlay=!1;defaultLoopMode=L.NO_LOOP;defaultMute=!0;showControl=!0;showMute=!0;customControlButtonSize=!1;controlButtonDiameter=.3;additionalControlButtonDiameter=.1;currentSourceIndex=0}class vo{id="";videoSrc="";name="";description="";coverSrc="";aspectRatio=1;duration=0;chromaKeySettings=new _;playbackRate=1}class bo extends ae{type=W.TYPE_3D_BOX;faceColor=c.createColorRgba(0,255,0,.2);borderColor=c.createColorRgba(0,255,0,.5);hoverFaceColor=c.createColorRgba(0,255,0,.5);hoverBorderColor=c.createColorRgba(0,255,0,.8);borderWidth=.005;hoverBorderSettings=new O}class Vo extends ae{type=W.TYPE_3D_MODEL;modelFormat="glb";modelSrc="";materialSrc="";coverSrc="";originalSize=new a(-1,-1,-1);innerScale=new a(-1,-1,-1);animationList=[];animationClipList=[];ignoreLighting=!1}class Uo{id="";name="";alias="";duration=0}class fo{id="";animationId="";name="";description="";speed=1;timeRange=[0,1];loop=!1;stayAtLastFrame=!1}class Bo{static NONE="none";static TOP="top";static BOTTOM="bottom"}class ko extends J{type=W.TYPE_TAG;tagNonPerspective=!1;enabledDrag=!1;size=.2;enabledBackground=!0;backgroundColor=c.createColorRgb(90,156,248);enabledCustomIcon=!1;iconSrc="";enabledIconColorOverride=!0;overrideIconColor=c.createColorRgb(255,255,255);enabledStem=!0;stemColor=c.createColorRgb(255,255,255);stemLength=.5;stemVector=new a(0,1,0);bindContentCardId="";isHoverShowContentCardBubble=!0;isClickShowContentCard=!0;clickShowContentCardStyle=U.BUBBLE;triggerButtonTitle="";tipTextLocation=Bo.NONE;tipTextContent="";tipTextColor=c.createColorRgba(255,255,255,1);tipTextBackgroundColor=c.createColorRgba(0,0,0,.4);tipTextFontSize=18;tipTextNonPerspective=!1}class Fo{static NORMAL="NORMAL";static EDIT_SCENE="EDIT_SCENE";static EDIT_COVER="EDIT_COVER"}const Go={uninitialized:1,waiting:2,loading:3,starting:4,playing:5,error:6};class xo{static UNINITIALIZED="uninitialized";static WAITING="waiting";static LOADING="loading";static STARTING="starting";static PLAYING="playing";static ERROR="error"}class Ho{status=xo.UNINITIALIZED;progress=0;get statusNum(){return Go[this.status]}}class Xo{type="";data={};constructor(e,t){this.type=e,this.data=t}}class Yo{static PLAYER_START="vrtalk_cmd_player_start";static PLAYER_MODE_UPDATE="vrtalk_cmd_player_mode_update";static COVER_SETTINGS_UPDATE="vrtalk_cmd_cover_settings_update";static UI_SETTINGS_UPDATE="vrtalk_cmd_ui_settings_update";static INFO_TEMPLATE_SETTINGS_UPDATE="vrtalk_cmd_info_template_settings_update";static COMPONENT_CREATE="vrtalk_cmd_component_create";static COMPONENT_UPDATE="vrtalk_cmd_component_update";static COMPONENT_DELETE="vrtalk_cmd_component_delete";static COMPONENT_FOLLOW_MOUSE="vrtalk_cmd_component_follow_mouse";static COMPONENT_CONTROLLER_MODIFY="vrtalk_cmd_component_controller";static COMPONENT_PLAY_TRANSITION_ANIMATION="vrtalk_cmd_component_play_transition_animation";static COMPONENT_STOP_TRANSITION_ANIMATION="vrtalk_cmd_component_stop_transition_animation";static COMPONENT_3D_MODEL_PLAY_ANIMATION_CLIP="vrtalk_cmd_component_3d_model_play_animation_clip";static COMPONENT_3D_MODEL_STOP_ANIMATION_CLIP="vrtalk_cmd_component_3d_model_stop_animation_clip";static COMPONENT_2D_TEXT_AUTO_FIT="vrtalk_cmd_component_2d_text_auto_fit";static FOV_ENTER_SHOT_MODE="vrtalk_cmd_fov_enter_shot_mode";static FOV_EXIT_SHOT_MODE="vrtalk_cmd_fov_exit_shot_mode";static FOV_UPDATE="vrtalk_cmd_fov_update";static FOV_DELETE="vrtalk_cmd_fov_delete";static LAYER_UPDATE="vrtalk_cmd_layer_update";static LAYER_DELETE="vrtalk_cmd_layer_delete";static LAYER_VISIBLE="vrtalk_cmd_layer_visible";static SWEEP_UPDATE_ALL="vrtalk_cmd_sweep_update_all";static SWEEP_UPDATE="vrtalk_cmd_sweep_update";static SWEEP_DELETE_VIRTUAL="vrtalk_cmd_sweep_delete_virtual";static SWEEP_UPDATE_RENDER_FLAG_VISIBLE="vrtalk_cmd_sweep_update_render_flag_visible";static LIGHT_CREATE="vrtalk_cmd_light_create";static LIGHT_UPDATE="vrtalk_cmd_light_update";static LIGHT_DELETE="vrtalk_cmd_light_delete";static TRIMMER_CREATE="vrtalk_cmd_trimmer_create";static TRIMMER_UPDATE="vrtalk_cmd_trimmer_update";static TRIMMER_DELETE="vrtalk_cmd_trimmer_delete";static TRIMMER_CONTROLLER_MODIFY="vrtalk_cmd_trimmer_controller";static TRIMMER_EDITING_STATE_UPDATE="vrtalk_cmd_trimmer_editing_state_update";static STICKER_CREATE="vrtalk_cmd_sticker_create";static STICKER_UPDATE="vrtalk_cmd_sticker_update";static STICKER_DELETE="vrtalk_cmd_sticker_delete";static STICKER_CONTROLLER_MODIFY="vrtalk_cmd_sticker_controller";static STICKER_EDITING_STATE_UPDATE="vrtalk_cmd_sticker_editing_state_update";static TARGET_CREATE="vrtalk_cmd_target_create";static TARGET_UPDATE="vrtalk_cmd_target_update";static TARGET_DELETE="vrtalk_cmd_target_delete";static TARGET_CONTROLLER_MODIFY="vrtalk_cmd_target_controller";static TARGET_EDITING_STATE_UPDATE="vrtalk_cmd_target_editing_state_update";static TARGET_GROUP_VISIBLE_UPDATE="vrtalk_cmd_target_group_visible_update";static OBSTACLE_CREATE="vrtalk_cmd_obstacle_create";static OBSTACLE_UPDATE="vrtalk_cmd_obstacle_update";static OBSTACLE_DELETE="vrtalk_cmd_obstacle_delete";static OBSTACLE_CONTROLLER_MODIFY="vrtalk_cmd_obstacle_controller";static OBSTACLE_EDITING_STATE_UPDATE="vrtalk_cmd_obstacle_editing_state_update";static OBSTACLE_GROUP_VISIBLE_UPDATE="vrtalk_cmd_obstacle_group_visible_update";static SPACE_FENCE_CREATE="vrtalk_cmd_space_fence_create";static SPACE_FENCE_UPDATE="vrtalk_cmd_space_fence_update";static SPACE_FENCE_DELETE="vrtalk_cmd_space_fence_delete";static SPACE_FENCE_CONTROLLER_MODIFY="vrtalk_cmd_space_fence_controller";static SPACE_FENCE_EDITING_STATE_UPDATE="vrtalk_cmd_space_fence_editing_state_update";static SPACE_FENCE_GROUP_VISIBLE_UPDATE="vrtalk_cmd_space_fence_group_visible_update";static SPACE_FENCE_GROUP_COLOR_UPDATE="vrtalk_cmd_space_fence_group_color_update";static WORMHOLE_CREATE="vrtalk_cmd_wormhole_create";static WORMHOLE_UPDATE="vrtalk_cmd_wormhole_update";static WORMHOLE_DELETE="vrtalk_cmd_wormhole_delete";static WORMHOLE_CONTROLLER_MODIFY="vrtalk_cmd_wormhole_controller";static WORMHOLE_EDITING_STATE_UPDATE="vrtalk_cmd_wormhole_editing_state_update";static WORMHOLE_GROUP_VISIBLE_UPDATE="vrtalk_cmd_wormhole_group_visible_update";static ASSET_LABEL_CREATE="vrtalk_cmd_asset_label_create";static ASSET_LABEL_UPDATE="vrtalk_cmd_asset_label_update";static ASSET_LABEL_DELETE="vrtalk_cmd_asset_label_delete";static ASSET_LABEL_CONTROLLER_MODIFY="vrtalk_cmd_asset_label_controller";static ASSET_LABEL_EDITING_STATE_UPDATE="vrtalk_cmd_asset_label_editing_state_update";static FLOOR_UPDATE="vrtalk_cmd_floor_update";static INFORMATION_CONTENT_CARD_UPDATE="vrtalk_cmd_information_content_card_update";static INFORMATION_CONTENT_CARD_DELETE="vrtalk_cmd_information_content_card_delete";static MARKER_UPDATE="vrtalk_cmd_marker_update";static MARKER_DELETE="vrtalk_cmd_marker_delete";static CAMERA_MOVE_TO="vrtalk_cmd_camera_move_to";static CAMERA_MOVE_TO_INSIDE="vrtalk_cmd_camera_move_to_inside";static CAMERA_MOVE_TO_VR_FOV="vrtalk_cmd_camera_move_to_vr_fov";static CAMERA_MOVE_TO_NEAR_COMPONENT="vrtalk_cmd_camera_move_to_near_component";static CAMERA_MOVE_TO_WATCH_POSITION="vrtalk_cmd_camera_move_to_watch_position";static RENDERER_TAKE_SCREENSHOT="vrtalk_cmd_renderer_take_screenshot";static RENDERER_GET_PANORAMA_IMAGE="vrtalk_cmd_renderer_get_panorama_image";static NAVIGATION_REQUEST="vrtalk_cmd_navigation_request";static NAVIGATION_START="vrtalk_cmd_navigation_start";static NAVIGATION_CANCEL="vrtalk_cmd_navigation_cancel";static AUDIO_UPDATE="vrtalk_cmd_audio_update";static AUDIO_DELETE="vrtalk_cmd_audio_delete";static AUDIO_LIST_UPDATE="vrtalk_cmd_audio_list_update";static AUDIO_LIST_DELETE="vrtalk_cmd_audio_list_delete";static AUDIO_CENTER_PLAYER_SHOW_PLAY_CONTROL_UPDATE="vrtalk_cmd_audio_center_player_show_play_control_update";static AUDIO_CENTER_PLAYER_SHOW_VOLUME_CONTROL_UPDATE="vrtalk_cmd_audio_center_player_show_volume_control_update";static AUDIO_CENTER_PLAYER_VOLUME_UPDATE="vrtalk_cmd_audio_center_player_volume_update";static MONITOR_LIST_UPDATE="vrtalk_cmd_monitor_list_update";static DOLLY_PATH_CAPTURE_DESTINATION="vrtalk_cmd_dolly_path_capture_destination";static DOLLY_PATH_PREVIEW="vrtalk_cmd_dolly_path_preview";static DOLLY_PATH_STOP_PREVIEW="vrtalk_cmd_dolly_path_stop_preview";static MESSAGE_CARD_PREVIEW="vrtalk_cmd_message_card_preview"}class Wo{onStart(e){Ui.registerCommandListener(Yo.PLAYER_START,(t=>{e(t.data.vrContentData,t.data.isForceIgnoreEnterBtn)}))}onModeUpdate(e){Ui.registerCommandListener(Yo.PLAYER_MODE_UPDATE,(t=>{e(t.data)}))}}class Ko{onCoverSettingsUpdate(e){Ui.registerCommandListener(Yo.COVER_SETTINGS_UPDATE,(t=>{e(t.data)}))}}class Jo{onUiSettingsUpdate(e){Ui.registerCommandListener(Yo.UI_SETTINGS_UPDATE,(t=>{e(t.data)}))}}class zo{onInfoTemplateSettingsUpdate(e){Ui.registerCommandListener(Yo.INFO_TEMPLATE_SETTINGS_UPDATE,(t=>{e(t.data)}))}}class Qo{onContentCardUpdate(e){Ui.registerCommandListener(Yo.INFORMATION_CONTENT_CARD_UPDATE,(t=>{e(t.data)}))}onContentCardDelete(e){Ui.registerCommandListener(Yo.INFORMATION_CONTENT_CARD_DELETE,(t=>{e(t.data)}))}}class jo{onCreate(e){Ui.registerCommandListener(Yo.COMPONENT_CREATE,(t=>{e(t.data)}))}onUpdate(e){Ui.registerCommandListener(Yo.COMPONENT_UPDATE,(t=>{e(t.data)}))}onDelete(e){Ui.registerCommandListener(Yo.COMPONENT_DELETE,(t=>{e(t.data)}))}onFollowMouse(e){Ui.registerCommandListener(Yo.COMPONENT_FOLLOW_MOUSE,(t=>{e(t.data)}))}onControllerModify(e){Ui.registerCommandListener(Yo.COMPONENT_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.componentId)}))}onPlayTransitionAnimation(e){Ui.registerCommandListener(Yo.COMPONENT_PLAY_TRANSITION_ANIMATION,(t=>{e(t.data.componentId,t.data.animationId)}))}onStopTransitionAnimation(e){Ui.registerCommandListener(Yo.COMPONENT_STOP_TRANSITION_ANIMATION,(t=>{e(t.data.componentId)}))}on3dModelPlayAnimationClip(e){Ui.registerCommandListener(Yo.COMPONENT_3D_MODEL_PLAY_ANIMATION_CLIP,(t=>{e(t.data.modelComponentId,t.data.animationClipId)}))}on3dModelStopAnimationClip(e){Ui.registerCommandListener(Yo.COMPONENT_3D_MODEL_STOP_ANIMATION_CLIP,(t=>{e(t.data.modelComponentId)}))}on2dTextAutoFit(e){Ui.registerCommandListener(Yo.COMPONENT_2D_TEXT_AUTO_FIT,(t=>{e(t.data)}))}}class Zo{onEnterFovShotMode(e){Ui.registerCommandListener(Yo.FOV_ENTER_SHOT_MODE,(t=>{e(t.data)}))}onExitFovShotMode(e){Ui.registerCommandListener(Yo.FOV_EXIT_SHOT_MODE,(t=>{e()}))}onUpdate(e){Ui.registerCommandListener(Yo.FOV_UPDATE,(t=>{e(t.data)}))}onDelete(e){Ui.registerCommandListener(Yo.FOV_DELETE,(t=>{e(t.data)}))}}class qo{onUpdate(e){Ui.registerCommandListener(Yo.LAYER_UPDATE,(t=>{e(t.data)}))}onDelete(e){Ui.registerCommandListener(Yo.LAYER_DELETE,(t=>{e(t.data.layerId,t.data.deleteComponents)}))}onVisible(e){Ui.registerCommandListener(Yo.LAYER_VISIBLE,(t=>{e(t.data.layerId,t.data.visible)}))}}class $o{onCreate(e){Ui.registerCommandListener(Yo.LIGHT_CREATE,(t=>{e(t.data)}))}onUpdate(e){Ui.registerCommandListener(Yo.LIGHT_UPDATE,(t=>{e(t.data)}))}onDelete(e){Ui.registerCommandListener(Yo.LIGHT_DELETE,(t=>{e(t.data)}))}}class ei{onCreate(e){Ui.registerCommandListener(Yo.TRIMMER_CREATE,(t=>{e(t.data)}))}onUpdate(e){Ui.registerCommandListener(Yo.TRIMMER_UPDATE,(t=>{e(t.data)}))}onDelete(e){Ui.registerCommandListener(Yo.TRIMMER_DELETE,(t=>{e(t.data)}))}onControllerModify(e){Ui.registerCommandListener(Yo.TRIMMER_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.trimmerId)}))}onEditingStateUpdate(e){Ui.registerCommandListener(Yo.TRIMMER_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}}class ti{onCreate(e){Ui.registerCommandListener(Yo.STICKER_CREATE,(t=>{e(t.data)}))}onUpdate(e){Ui.registerCommandListener(Yo.STICKER_UPDATE,(t=>{e(t.data)}))}onDelete(e){Ui.registerCommandListener(Yo.STICKER_DELETE,(t=>{e(t.data)}))}onControllerModify(e){Ui.registerCommandListener(Yo.STICKER_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.stickerId)}))}onEditingStateUpdate(e){Ui.registerCommandListener(Yo.STICKER_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}}class ai{onUpdate(e){Ui.registerCommandListener(Yo.FLOOR_UPDATE,(t=>{e(t.data)}))}}class si{onMoveTo(e){Ui.registerCommandListener(Yo.CAMERA_MOVE_TO,(t=>{e(t.data.transition,t.data.cameraPose)}))}onMoveToInside(e){Ui.registerCommandListener(Yo.CAMERA_MOVE_TO_INSIDE,(t=>{e(t.data.transition,t.data.transitionTime,t.data.cameraPose)}))}onMoveToVrFov(e){Ui.registerCommandListener(Yo.CAMERA_MOVE_TO_VR_FOV,(t=>{e(t.data.transition,t.data.transitionTime,t.data.fovId)}))}onMoveToNearComponent(e){Ui.registerCommandListener(Yo.CAMERA_MOVE_TO_NEAR_COMPONENT,(t=>{e(t.data.transition,t.data.transitionTime,t.data.componentId)}))}onMoveToWatchPosition(e){Ui.registerCommandListener(Yo.CAMERA_MOVE_TO_WATCH_POSITION,(t=>{e(t.data.transition,t.data.transitionTime,t.data.position)}))}}class ni{onTakeScreen(e){Ui.registerCommandListener(Yo.RENDERER_TAKE_SCREENSHOT,(t=>{e(t.data.resolution,t.data.visibility)}))}onGetPanoramaImage(e){Ui.registerCommandListener(Yo.RENDERER_GET_PANORAMA_IMAGE,(()=>{e()}))}}class oi{onMarkerUpdate(e){Ui.registerCommandListener(Yo.MARKER_UPDATE,(t=>{e(t.data)}))}onDelete(e){Ui.registerCommandListener(Yo.MARKER_DELETE,(t=>{e(t.data)}))}}class ii{onNavigationRequest(e){Ui.registerCommandListener(Yo.NAVIGATION_REQUEST,(t=>{e(t.data)}))}onNavigationStart(e){Ui.registerCommandListener(Yo.NAVIGATION_START,(t=>{e(t.data)}))}onNavigationCancel(e){Ui.registerCommandListener(Yo.NAVIGATION_CANCEL,(t=>{e()}))}}class ri{onCreate(e){Ui.registerCommandListener(Yo.OBSTACLE_CREATE,(t=>{e(t.data)}))}onUpdate(e){Ui.registerCommandListener(Yo.OBSTACLE_UPDATE,(t=>{e(t.data)}))}onDelete(e){Ui.registerCommandListener(Yo.OBSTACLE_DELETE,(t=>{e(t.data)}))}onControllerModify(e){Ui.registerCommandListener(Yo.OBSTACLE_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.obstacleId)}))}onEditingStateUpdate(e){Ui.registerCommandListener(Yo.OBSTACLE_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}onGroupVisibleUpdate(e){Ui.registerCommandListener(Yo.OBSTACLE_GROUP_VISIBLE_UPDATE,(t=>{e(t.data.groupId,t.data.visible)}))}}class ci{onAudioListUpdate(e){Ui.registerCommandListener(Yo.AUDIO_LIST_UPDATE,(t=>{e(t.data)}))}onAudioListDelete(e){Ui.registerCommandListener(Yo.AUDIO_LIST_DELETE,(t=>{e(t.data)}))}onAudioUpdate(e){Ui.registerCommandListener(Yo.AUDIO_UPDATE,(t=>{e(t.data)}))}onAudioDelete(e){Ui.registerCommandListener(Yo.AUDIO_DELETE,(t=>{e(t.data)}))}onAudioCenterPlayerShowPlayControlUpdate(e){Ui.registerCommandListener(Yo.AUDIO_CENTER_PLAYER_SHOW_PLAY_CONTROL_UPDATE,(t=>{e(t.data)}))}onAudioCenterPlayerShowVolumeControlUpdate(e){Ui.registerCommandListener(Yo.AUDIO_CENTER_PLAYER_SHOW_VOLUME_CONTROL_UPDATE,(t=>{e(t.data)}))}onAudioCenterPlayerVolumeUpdate(e){Ui.registerCommandListener(Yo.AUDIO_CENTER_PLAYER_VOLUME_UPDATE,(t=>{e(t.data)}))}}class li{onCreate(e){Ui.registerCommandListener(Yo.ASSET_LABEL_CREATE,(t=>{e(t.data)}))}onUpdate(e){Ui.registerCommandListener(Yo.ASSET_LABEL_UPDATE,(t=>{e(t.data)}))}onDelete(e){Ui.registerCommandListener(Yo.ASSET_LABEL_DELETE,(t=>{e(t.data)}))}onControllerModify(e){Ui.registerCommandListener(Yo.ASSET_LABEL_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.assetLabelId)}))}onEditingStateUpdate(e){Ui.registerCommandListener(Yo.ASSET_LABEL_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}}class di{onCreate(e){Ui.registerCommandListener(Yo.TARGET_CREATE,(t=>{e(t.data)}))}onUpdate(e){Ui.registerCommandListener(Yo.TARGET_UPDATE,(t=>{e(t.data)}))}onDelete(e){Ui.registerCommandListener(Yo.TARGET_DELETE,(t=>{e(t.data)}))}onControllerModify(e){Ui.registerCommandListener(Yo.TARGET_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.targetId)}))}onEditingStateUpdate(e){Ui.registerCommandListener(Yo.TARGET_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}onGroupVisibleUpdate(e){Ui.registerCommandListener(Yo.TARGET_GROUP_VISIBLE_UPDATE,(t=>{e(t.data.groupId,t.data.visible)}))}}class _i{onCreate(e){Ui.registerCommandListener(Yo.WORMHOLE_CREATE,(t=>{e(t.data)}))}onUpdate(e){Ui.registerCommandListener(Yo.WORMHOLE_UPDATE,(t=>{e(t.data)}))}onDelete(e){Ui.registerCommandListener(Yo.WORMHOLE_DELETE,(t=>{e(t.data)}))}onControllerModify(e){Ui.registerCommandListener(Yo.WORMHOLE_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.wormholeId)}))}onEditingStateUpdate(e){Ui.registerCommandListener(Yo.WORMHOLE_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}onGroupVisibleUpdate(e){Ui.registerCommandListener(Yo.WORMHOLE_GROUP_VISIBLE_UPDATE,(t=>{e(t.data.groupId,t.data.visible)}))}}class Ei{onCreate(e){Ui.registerCommandListener(Yo.SPACE_FENCE_CREATE,(t=>{e(t.data)}))}onUpdate(e){Ui.registerCommandListener(Yo.SPACE_FENCE_UPDATE,(t=>{e(t.data)}))}onDelete(e){Ui.registerCommandListener(Yo.SPACE_FENCE_DELETE,(t=>{e(t.data)}))}onControllerModify(e){Ui.registerCommandListener(Yo.SPACE_FENCE_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.spaceFenceId)}))}onEditingStateUpdate(e){Ui.registerCommandListener(Yo.SPACE_FENCE_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}onGroupVisibleUpdate(e){Ui.registerCommandListener(Yo.SPACE_FENCE_GROUP_VISIBLE_UPDATE,(t=>{e(t.data.groupId,t.data.visible)}))}onGroupColorUpdate(e){Ui.registerCommandListener(Yo.SPACE_FENCE_GROUP_COLOR_UPDATE,(t=>{e(t.data.groupId,t.data.cubeFaceColor)}))}}class mi{onMonitorListUpdate(e){Ui.registerCommandListener(Yo.MONITOR_LIST_UPDATE,(t=>{e(t.data)}))}}class Ti{onMessageCardPreview(e){Ui.registerCommandListener(Yo.MESSAGE_CARD_PREVIEW,(t=>{e(t.data)}))}}class Ci{onCaptureDestination(e){Ui.registerCommandListener(Yo.DOLLY_PATH_CAPTURE_DESTINATION,(t=>{e()}))}onPreview(e){Ui.registerCommandListener(Yo.DOLLY_PATH_PREVIEW,(t=>{e(t.data)}))}onStopPreview(e){Ui.registerCommandListener(Yo.DOLLY_PATH_STOP_PREVIEW,(t=>{e()}))}}class pi{type="";data={};constructor(e,t){this.type=e,this.data=t}}class Ai{static PLAYER_READY="vrtalk_msg_player_ready";static PLAYER_STATUS_UPDATE="vrtalk_msg_player_status_update";static COMPONENT_UPDATE="vrtalk_msg_component_update";static COMPONENT_ON_CLICK="vrtalk_msg_component_on_click";static COMPONENT_TRANSITION_ANIMATION_FINISHED="vrtalk_msg_component_transition_animation_finished";static FOV_SHOT_RESULT="vrtalk_msg_fov_shot_result";static TRIMMER_UPDATE="vrtalk_msg_trimmer_update";static TRIMMER_ON_CLICK="vrtalk_msg_trimmer_on_click";static STICKER_UPDATE="vrtalk_msg_sticker_update";static STICKER_ON_CLICK="vrtalk_msg_sticker_on_click";static TARGET_UPDATE="vrtalk_msg_target_update";static TARGET_ON_CLICK="vrtalk_msg_target_on_click";static OBSTACLE_UPDATE="vrtalk_msg_obstacle_update";static OBSTACLE_ON_CLICK="vrtalk_msg_obstacle_on_click";static SPACE_FENCE_UPDATE="vrtalk_msg_space_fence_update";static SPACE_FENCE_ON_CLICK="vrtalk_msg_space_fence_on_click";static WORMHOLE_UPDATE="vrtalk_msg_wormhole_update";static WORMHOLE_ON_CLICK="vrtalk_msg_wormhole_on_click";static ASSET_LABEL_UPDATE="vrtalk_msg_asset_label_update";static ASSET_LABEL_ON_CLICK="vrtalk_msg_asset_label_on_click";static SWEEP_IMPORT_FROM_MATTERPORT="vrtalk_msg_sweep_import_from_matterport";static SWEEP_SYNC_MATTERPORT_ENABLED_STATE="vrtalk_msg_sweep_sync_matterport_enabled_state";static SWEEP_REQUEST_MODIFY_ENABLED="vrtalk_msg_sweep_request_modify_enabled";static FLOOR_IMPORT_FROM_MATTERPORT="vrtalk_msg_floor_import_from_matterport";static FLOOR_ENTER="vrtalk_msg_floor_enter";static FLOOR_LEAVE="vrtalk_msg_floor_leave";static CAMERA_POSE_UPDATE="vrtalk_msg_camera_pose_update";static RENDERER_SCREENSHOT_READY="vrtalk_msg_renderer_screenshot_ready";static RENDERER_PANORAMA_IMAGE_READY="vrtalk_msg_renderer_panorama_image_ready";static RENDERER_WORLD_SIZE_READY="vrtalk_msg_renderer_world_size_ready";static DOLLY_PATH_DESTINATION_CAPTURED="vrtalk_msg_dolly_path_destination_captured";static NAVIGATION_RESULT_READY="vrtalk_msg_navigation_result_ready";static NAVIGATION_START="vrtalk_msg_navigation_start";static NAVIGATION_END="vrtalk_msg_navigation_end";static NAVIGATION_CANCEL="vrtalk_msg_navigation_cancel"}class Oi{sendCameraPoseUpdate(e){window.parent.postMessage(new pi(Ai.CAMERA_POSE_UPDATE,e),"*")}}class gi{sendUpdate(e){window.parent.postMessage(new pi(Ai.COMPONENT_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new pi(Ai.COMPONENT_ON_CLICK,e),"*")}sendTransitionAnimationFinished(e,t){window.parent.postMessage(new pi(Ai.COMPONENT_TRANSITION_ANIMATION_FINISHED,{componentId:e,animationId:t}),"*")}}class Ii{sendShotResult(e){window.parent.postMessage(new pi(Ai.FOV_SHOT_RESULT,JSON.parse(JSON.stringify(e))),"*")}}class Si{sendImportFromMatterport(e){window.parent.postMessage(new pi(Ai.FLOOR_IMPORT_FROM_MATTERPORT,e),"*")}sendEnter(e){window.parent.postMessage(new pi(Ai.FLOOR_ENTER,e),"*")}sendLeave(e){window.parent.postMessage(new pi(Ai.FLOOR_LEAVE,e),"*")}}class Ni{sendReady(){window.parent.postMessage(new pi(Ai.PLAYER_READY,{}),"*")}sendStatusUpdate(e){window.parent.postMessage(new pi(Ai.PLAYER_STATUS_UPDATE,e),"*")}}class Li{sendImportFromMatterport(e){window.parent.postMessage(new pi(Ai.SWEEP_IMPORT_FROM_MATTERPORT,e),"*")}sendSyncMatterportEnabledState(e){window.parent.postMessage(new pi(Ai.SWEEP_SYNC_MATTERPORT_ENABLED_STATE,e),"*")}sendRequestModifyEnabled(e,t){window.parent.postMessage(new pi(Ai.SWEEP_REQUEST_MODIFY_ENABLED,{sweepId:e,enabled:t}),"*")}}class Ri{sendScreenshotReady(e){window.parent.postMessage(new pi(Ai.RENDERER_SCREENSHOT_READY,e),"*")}sendPanoramaImageReady(e){window.parent.postMessage(new pi(Ai.RENDERER_PANORAMA_IMAGE_READY,e),"*")}sendWorldSizeReady(e){window.parent.postMessage(new pi(Ai.RENDERER_WORLD_SIZE_READY,JSON.parse(JSON.stringify(e))),"*")}}class ui{sendNavigationResultReady(e){window.parent.postMessage(new pi(Ai.NAVIGATION_RESULT_READY,JSON.parse(JSON.stringify(e))),"*")}sendNavigationStart(e){window.parent.postMessage(new pi(Ai.NAVIGATION_START,JSON.parse(JSON.stringify(e))),"*")}sendNavigationEnd(e){window.parent.postMessage(new pi(Ai.NAVIGATION_END,JSON.parse(JSON.stringify(e))),"*")}sendNavigationCancel(e){window.parent.postMessage(new pi(Ai.NAVIGATION_CANCEL,JSON.parse(JSON.stringify(e))),"*")}}class Pi{sendUpdate(e){window.parent.postMessage(new pi(Ai.OBSTACLE_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new pi(Ai.OBSTACLE_ON_CLICK,e),"*")}}class Mi{sendUpdate(e){window.parent.postMessage(new pi(Ai.TRIMMER_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new pi(Ai.TRIMMER_ON_CLICK,e),"*")}}class yi{sendUpdate(e){window.parent.postMessage(new pi(Ai.STICKER_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new pi(Ai.STICKER_ON_CLICK,e),"*")}}class Di{sendUpdate(e){window.parent.postMessage(new pi(Ai.ASSET_LABEL_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new pi(Ai.ASSET_LABEL_ON_CLICK,e),"*")}}class hi{sendUpdate(e){window.parent.postMessage(new pi(Ai.TARGET_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new pi(Ai.TARGET_ON_CLICK,e),"*")}}class wi{sendUpdate(e){window.parent.postMessage(new pi(Ai.WORMHOLE_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new pi(Ai.WORMHOLE_ON_CLICK,e),"*")}}class vi{sendUpdate(e){window.parent.postMessage(new pi(Ai.SPACE_FENCE_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new pi(Ai.SPACE_FENCE_ON_CLICK,e),"*")}}class bi{sendDestinationCaptured(e){window.parent.postMessage(new pi(Ai.DOLLY_PATH_DESTINATION_CAPTURED,JSON.parse(JSON.stringify(e))),"*")}}class Vi{onUpdateAll(e){Ui.registerCommandListener(Yo.SWEEP_UPDATE_ALL,(t=>{e(t.data)}))}onUpdate(e){Ui.registerCommandListener(Yo.SWEEP_UPDATE,(t=>{e(t.data)}))}onDeleteVirtual(e){Ui.registerCommandListener(Yo.SWEEP_DELETE_VIRTUAL,(t=>{e(t.data)}))}onUpdateRenderFlagVisible(e){Ui.registerCommandListener(Yo.SWEEP_UPDATE_RENDER_FLAG_VISIBLE,(t=>{e(t.data)}))}}class Ui{static commandListenerPool=new Map;static commandPlayer=new Wo;static commandCover=new Ko;static commandUi=new Jo;static commandInfoTemplate=new zo;static commandInformation=new Qo;static commandComponent=new jo;static commandFov=new Zo;static commandLayer=new qo;static commandLight=new $o;static commandTrimmer=new ei;static commandSticker=new ti;static commandSweep=new Vi;static commandFloor=new ai;static commandCamera=new si;static commandRenderer=new ni;static commandMarker=new oi;static commandNavigation=new ii;static commandObstacle=new ri;static commandAudio=new ci;static commandAssetLabel=new li;static commandTarget=new di;static commandWormhole=new _i;static commandSpaceFence=new Ei;static commandMonitor=new mi;static commandMessageCard=new Ti;static commandDollyPath=new Ci;static messageCamera=new Oi;static messageComponent=new gi;static messageFov=new Ii;static messageFloor=new Si;static messagePlayer=new Ni;static messageSweep=new Li;static messageRenderer=new Ri;static messageNavigation=new ui;static messageObstacle=new Pi;static messageTrimmer=new Mi;static messageSticker=new yi;static messageAssetLabel=new Di;static messageTarget=new hi;static messageWormhole=new wi;static messageSpaceFence=new vi;static messageDollyPath=new bi;static registerCommandListener(e,t){Ui.commandListenerPool.has(e)||Ui.commandListenerPool.set(e,[]),Ui.commandListenerPool.get(e).push(t)}static unRegisterCommandListener(e,t){if(!Ui.commandListenerPool.has(e))return;const a=Ui.commandListenerPool.get(e).indexOf(t);a>=0&&Ui.commandListenerPool.get(e).splice(a,1)}static init(){window.addEventListener("message",(e=>{if(e.data.type&&0===e.data.type.indexOf("vrtalk_cmd_")){const t=e.data;Ui.commandListenerPool.has(t.type)&&Ui.commandListenerPool.get(t.type).forEach((e=>{e(t)}))}}))}}class fi{player;constructor(e){this.player=e}onReady(e){this.player.registerMessageListener(Ai.PLAYER_READY,(t=>{e()}))}onStatusUpdate(e){this.player.registerMessageListener(Ai.PLAYER_STATUS_UPDATE,(t=>{e(t.data)}))}}class Bi{player;constructor(e){this.player=e}sendStart(e,t){this.player.sendCommand(new Xo(Yo.PLAYER_START,JSON.parse(JSON.stringify({vrContentData:e,isForceIgnoreEnterBtn:t}))))}sendModeUpdate(e){this.player.sendCommand(new Xo(Yo.PLAYER_MODE_UPDATE,e))}}class ki{player;constructor(e){this.player=e}sendCoverSettingsUpdate(e){this.player.sendCommand(new Xo(Yo.COVER_SETTINGS_UPDATE,JSON.parse(JSON.stringify(e))))}}class Fi{player;constructor(e){this.player=e}sendUiSettingsUpdate(e){this.player.sendCommand(new Xo(Yo.UI_SETTINGS_UPDATE,JSON.parse(JSON.stringify(e))))}}class Gi{player;constructor(e){this.player=e}sendInfoTemplateSettingsUpdate(e){this.player.sendCommand(new Xo(Yo.INFO_TEMPLATE_SETTINGS_UPDATE,JSON.parse(JSON.stringify(e))))}}class xi{player;constructor(e){this.player=e}sendUpdateContentCard(e){this.player.sendCommand(new Xo(Yo.INFORMATION_CONTENT_CARD_UPDATE,JSON.parse(JSON.stringify(e))))}sendDeleteContentCard(e){this.player.sendCommand(new Xo(Yo.INFORMATION_CONTENT_CARD_DELETE,e))}}class Hi{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Xo(Yo.COMPONENT_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Xo(Yo.COMPONENT_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Xo(Yo.COMPONENT_DELETE,e))}sendFollowMouse(e){this.player.sendCommand(new Xo(Yo.COMPONENT_FOLLOW_MOUSE,e))}sendControllerModify(e,t){this.player.sendCommand(new Xo(Yo.COMPONENT_CONTROLLER_MODIFY,{componentId:t,controllerType:e}))}sendPlayTransitionAnimation(e,t){this.player.sendCommand(new Xo(Yo.COMPONENT_PLAY_TRANSITION_ANIMATION,{componentId:e,animationId:t}))}sendStopTransitionAnimation(e){this.player.sendCommand(new Xo(Yo.COMPONENT_STOP_TRANSITION_ANIMATION,{componentId:e}))}send3dModelPlayAnimationClip(e,t){this.player.sendCommand(new Xo(Yo.COMPONENT_3D_MODEL_PLAY_ANIMATION_CLIP,{modelComponentId:e,animationClipId:t}))}send3dModelStopAnimationClip(e){this.player.sendCommand(new Xo(Yo.COMPONENT_3D_MODEL_STOP_ANIMATION_CLIP,{modelComponentId:e}))}send2dTextAutoFit(e){this.player.sendCommand(new Xo(Yo.COMPONENT_2D_TEXT_AUTO_FIT,e))}}class Xi{player;constructor(e){this.player=e}enterFovShotMode(e){this.player.sendCommand(new Xo(Yo.FOV_ENTER_SHOT_MODE,JSON.parse(JSON.stringify(e))))}exitFovShotMode(){this.player.sendCommand(new Xo(Yo.FOV_EXIT_SHOT_MODE,{}))}sendUpdate(e){this.player.sendCommand(new Xo(Yo.FOV_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Xo(Yo.FOV_DELETE,e))}}class Yi{player;constructor(e){this.player=e}sendUpdate(e){this.player.sendCommand(new Xo(Yo.LAYER_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e,t){this.player.sendCommand(new Xo(Yo.LAYER_DELETE,{layerId:e,deleteComponents:t}))}sendVisible(e,t){this.player.sendCommand(new Xo(Yo.LAYER_VISIBLE,{layerId:e,visible:t}))}}class Wi{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Xo(Yo.LIGHT_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Xo(Yo.LIGHT_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Xo(Yo.LIGHT_DELETE,e))}}class Ki{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Xo(Yo.TRIMMER_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Xo(Yo.TRIMMER_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Xo(Yo.TRIMMER_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Xo(Yo.TRIMMER_CONTROLLER_MODIFY,{controllerType:e,trimmerId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Xo(Yo.TRIMMER_EDITING_STATE_UPDATE,e))}}class Ji{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Xo(Yo.STICKER_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Xo(Yo.STICKER_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Xo(Yo.STICKER_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Xo(Yo.STICKER_CONTROLLER_MODIFY,{controllerType:e,stickerId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Xo(Yo.STICKER_EDITING_STATE_UPDATE,e))}}class zi{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Xo(Yo.ASSET_LABEL_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Xo(Yo.ASSET_LABEL_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Xo(Yo.ASSET_LABEL_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Xo(Yo.ASSET_LABEL_CONTROLLER_MODIFY,{controllerType:e,assetLabelId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Xo(Yo.ASSET_LABEL_EDITING_STATE_UPDATE,e))}}class Qi{player;constructor(e){this.player=e}sendUpdateAll(e){this.player.sendCommand(new Xo(Yo.SWEEP_UPDATE_ALL,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Xo(Yo.SWEEP_UPDATE,JSON.parse(JSON.stringify(e))))}sendDeleteVirtual(e){this.player.sendCommand(new Xo(Yo.SWEEP_DELETE_VIRTUAL,e))}sendUpdateRenderFlagVisible(e){this.player.sendCommand(new Xo(Yo.SWEEP_UPDATE_RENDER_FLAG_VISIBLE,e))}}class ji{player;constructor(e){this.player=e}sendUpdate(e){this.player.sendCommand(new Xo(Yo.FLOOR_UPDATE,JSON.parse(JSON.stringify(e))))}}class Zi{player;constructor(e){this.player=e}sendMoveTo(e,t){this.player.sendCommand(new Xo(Yo.CAMERA_MOVE_TO,JSON.parse(JSON.stringify({transition:e,cameraMode:t}))))}sendMoveToInside(e,t,a){this.player.sendCommand(new Xo(Yo.CAMERA_MOVE_TO_INSIDE,JSON.parse(JSON.stringify({transition:e,transitionTime:t,cameraPose:a}))))}sendMoveToVrFov(e,t,a){this.player.sendCommand(new Xo(Yo.CAMERA_MOVE_TO_VR_FOV,JSON.parse(JSON.stringify({transition:e,transitionTime:t,fovId:a}))))}sendMoveToNearComponent(e,t,a){this.player.sendCommand(new Xo(Yo.CAMERA_MOVE_TO_NEAR_COMPONENT,JSON.parse(JSON.stringify({transition:e,transitionTime:t,componentId:a}))))}sendMoveToWatchPosition(e,t,a){this.player.sendCommand(new Xo(Yo.CAMERA_MOVE_TO_WATCH_POSITION,JSON.parse(JSON.stringify({transition:e,transitionTime:t,position:a}))))}}class qi{player;constructor(e){this.player=e}sendTakeScreenshot(e,t){this.player.sendCommand(new Xo(Yo.RENDERER_TAKE_SCREENSHOT,{resolution:e,visibility:t}))}sendGetPanoramaImage(){this.player.sendCommand(new Xo(Yo.RENDERER_GET_PANORAMA_IMAGE,{}))}}class $i{player;constructor(e){this.player=e}sendMarkerUpdate(e){this.player.sendCommand(new Xo(Yo.MARKER_UPDATE,JSON.parse(JSON.stringify(e))))}sendMarkerDelete(e){this.player.sendCommand(new Xo(Yo.MARKER_DELETE,e))}}class er{player;constructor(e){this.player=e}sendNavigationRequest(e){this.player.sendCommand(new Xo(Yo.NAVIGATION_REQUEST,JSON.parse(JSON.stringify(e))))}sendNavigationStart(e){this.player.sendCommand(new Xo(Yo.NAVIGATION_START,JSON.parse(JSON.stringify(e))))}sendNavigationCancel(){this.player.sendCommand(new Xo(Yo.NAVIGATION_CANCEL,{}))}}class tr{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Xo(Yo.OBSTACLE_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Xo(Yo.OBSTACLE_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Xo(Yo.OBSTACLE_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Xo(Yo.OBSTACLE_CONTROLLER_MODIFY,{controllerType:e,obstacleId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Xo(Yo.OBSTACLE_EDITING_STATE_UPDATE,e))}sendGroupVisibleUpdate(e,t){this.player.sendCommand(new Xo(Yo.OBSTACLE_GROUP_VISIBLE_UPDATE,{groupId:e,visible:t}))}}class ar{player;constructor(e){this.player=e}sendAudioListUpdate(e){this.player.sendCommand(new Xo(Yo.AUDIO_LIST_UPDATE,JSON.parse(JSON.stringify(e))))}sendAudioListDelete(e){this.player.sendCommand(new Xo(Yo.AUDIO_LIST_DELETE,{audioListId:e}))}sendAudioUpdate(e){this.player.sendCommand(new Xo(Yo.AUDIO_UPDATE,JSON.parse(JSON.stringify(e))))}sendAudioDelete(e,t){this.player.sendCommand(new Xo(Yo.AUDIO_DELETE,{audioListId:e,audioId:t}))}sendAudioCenterPlayerShowPlayControlUpdate(e){this.player.sendCommand(new Xo(Yo.AUDIO_CENTER_PLAYER_SHOW_PLAY_CONTROL_UPDATE,{show:e}))}sendAudioCenterPlayerShowMuteControlUpdate(e){this.player.sendCommand(new Xo(Yo.AUDIO_CENTER_PLAYER_SHOW_VOLUME_CONTROL_UPDATE,{show:e}))}sendAudioCenterPlayerVolumeUpdate(e){this.player.sendCommand(new Xo(Yo.AUDIO_CENTER_PLAYER_VOLUME_UPDATE,{volume:e}))}}class sr{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Xo(Yo.TARGET_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Xo(Yo.TARGET_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Xo(Yo.TARGET_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Xo(Yo.TARGET_CONTROLLER_MODIFY,{controllerType:e,targetId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Xo(Yo.TARGET_EDITING_STATE_UPDATE,e))}sendGroupVisibleUpdate(e,t){this.player.sendCommand(new Xo(Yo.TARGET_GROUP_VISIBLE_UPDATE,{groupId:e,visible:t}))}}class nr{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Xo(Yo.WORMHOLE_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Xo(Yo.WORMHOLE_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Xo(Yo.WORMHOLE_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Xo(Yo.WORMHOLE_CONTROLLER_MODIFY,{controllerType:e,wormholeId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Xo(Yo.WORMHOLE_EDITING_STATE_UPDATE,e))}sendGroupVisibleUpdate(e,t){this.player.sendCommand(new Xo(Yo.WORMHOLE_GROUP_VISIBLE_UPDATE,{groupId:e,visible:t}))}}class or{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Xo(Yo.SPACE_FENCE_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Xo(Yo.SPACE_FENCE_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Xo(Yo.SPACE_FENCE_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Xo(Yo.SPACE_FENCE_CONTROLLER_MODIFY,{controllerType:e,spaceFenceId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Xo(Yo.SPACE_FENCE_EDITING_STATE_UPDATE,e))}sendGroupVisibleUpdate(e,t){this.player.sendCommand(new Xo(Yo.SPACE_FENCE_GROUP_VISIBLE_UPDATE,{groupId:e,visible:t}))}sendGroupColorUpdate(e,t){this.player.sendCommand(new Xo(Yo.SPACE_FENCE_GROUP_COLOR_UPDATE,{groupId:e,cubeFaceColor:JSON.parse(JSON.stringify(t))}))}}class ir{player;constructor(e){this.player=e}sendMonitorListUpdate(e){this.player.sendCommand(new Xo(Yo.MONITOR_LIST_UPDATE,JSON.parse(JSON.stringify(e))))}}class rr{player;constructor(e){this.player=e}sendPreview(e,t){this.player.sendCommand(new Xo(Yo.MESSAGE_CARD_PREVIEW,{card:e?JSON.parse(JSON.stringify(e)):null,show:t}))}}class cr{player;constructor(e){this.player=e}captureDestination(){this.player.sendCommand(new Xo(Yo.DOLLY_PATH_CAPTURE_DESTINATION,{}))}preview(e){this.player.sendCommand(new Xo(Yo.DOLLY_PATH_PREVIEW,JSON.parse(JSON.stringify(e))))}stopPreview(){this.player.sendCommand(new Xo(Yo.DOLLY_PATH_STOP_PREVIEW,{}))}}class lr{player;constructor(e){this.player=e}onCameraPoseUpdate(e){this.player.registerMessageListener(Ai.CAMERA_POSE_UPDATE,(t=>{e(t.data)}))}}class dr{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ai.COMPONENT_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ai.COMPONENT_ON_CLICK,(t=>{e(t.data)}))}onTransitionAnimationFinished(e){this.player.registerMessageListener(Ai.COMPONENT_TRANSITION_ANIMATION_FINISHED,(t=>{e(t.data.componentId,t.data.animationId)}))}}class _r{player;constructor(e){this.player=e}onShotResult(e){this.player.registerMessageListener(Ai.FOV_SHOT_RESULT,(t=>{e(t.data)}))}}class Er{player;constructor(e){this.player=e}onImportFromMatterport(e){this.player.registerMessageListener(Ai.FLOOR_IMPORT_FROM_MATTERPORT,(t=>{e(t.data)}))}onEnterFloor(e){this.player.registerMessageListener(Ai.FLOOR_ENTER,(t=>{e(t.data)}))}onLeaveFloor(e){this.player.registerMessageListener(Ai.FLOOR_LEAVE,(t=>{e(t.data)}))}}class mr{player;constructor(e){this.player=e}onImportFromMatterport(e){this.player.registerMessageListener(Ai.SWEEP_IMPORT_FROM_MATTERPORT,(t=>{e(t.data)}))}onSyncMatterportEnabledState(e){this.player.registerMessageListener(Ai.SWEEP_SYNC_MATTERPORT_ENABLED_STATE,(t=>{e(t.data)}))}onRequestModifyEnabled(e){this.player.registerMessageListener(Ai.SWEEP_REQUEST_MODIFY_ENABLED,(t=>{e(t.data.sweepId,t.data.enabled)}))}}class Tr{player;constructor(e){this.player=e}onScreenshotReady(e){this.player.registerMessageListener(Ai.RENDERER_SCREENSHOT_READY,(t=>{e(t.data)}))}onPanoramaImageReady(e){this.player.registerMessageListener(Ai.RENDERER_PANORAMA_IMAGE_READY,(t=>{e(t.data)}))}onWorldSizeReady(e){this.player.registerMessageListener(Ai.RENDERER_WORLD_SIZE_READY,(t=>{e(t.data)}))}}class Cr{player;constructor(e){this.player=e}onNavigationResultReady(e){this.player.registerMessageListener(Ai.NAVIGATION_RESULT_READY,(t=>{e(t.data)}))}onNavigationStart(e){this.player.registerMessageListener(Ai.NAVIGATION_START,(t=>{e(t.data)}))}onNavigationEnd(e){this.player.registerMessageListener(Ai.NAVIGATION_END,(t=>{e(t.data)}))}onNavigationCancel(e){this.player.registerMessageListener(Ai.NAVIGATION_CANCEL,(t=>{e(t.data)}))}}class pr{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ai.OBSTACLE_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ai.OBSTACLE_ON_CLICK,(t=>{e(t.data)}))}}class Ar{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ai.TRIMMER_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ai.TRIMMER_ON_CLICK,(t=>{e(t.data)}))}}class Or{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ai.STICKER_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ai.STICKER_ON_CLICK,(t=>{e(t.data)}))}}class gr{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ai.ASSET_LABEL_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ai.ASSET_LABEL_ON_CLICK,(t=>{e(t.data)}))}}class Ir{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ai.TARGET_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ai.TARGET_ON_CLICK,(t=>{e(t.data)}))}}class Sr{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ai.WORMHOLE_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ai.WORMHOLE_ON_CLICK,(t=>{e(t.data)}))}}class Nr{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ai.SPACE_FENCE_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ai.SPACE_FENCE_ON_CLICK,(t=>{e(t.data)}))}}class Lr{player;constructor(e){this.player=e}onDestinationCaptured(e){this.player.registerMessageListener(Ai.DOLLY_PATH_DESTINATION_CAPTURED,(t=>{e(t.data)}))}}class Rr{serviceRegion;iframeElement=null;messageListenerPool=new Map;messageCamera;messageComponent;messageFov;messageFloor;messagePlayer;messageSweep;messageRenderer;messageNavigation;messageObstacle;messageTrimmer;messageSticker;messageAssetLabel;messageTarget;messageWormhole;messageSpaceFence;messageDollyPath;commandPlayer;commandCover;commandUi;commandInfoTemplate;commandInformation;commandComponent;commandFov;commandLayer;commandLight;commandTrimmer;commandSticker;commandAssetLabel;commandSweep;commandFloor;commandCamera;commandRenderer;commandMarker;commandNavigation;commandObstacle;commandAudio;commandTarget;commandWormhole;commandSpaceFence;commandMonitor;commandMessageCard;commandDollyPath;constructor(e,t){this.serviceRegion=e,this.iframeElement=t,this.messageCamera=new lr(this),this.messageComponent=new dr(this),this.messageFov=new _r(this),this.messageFloor=new Er(this),this.messagePlayer=new fi(this),this.messageSweep=new mr(this),this.messageRenderer=new Tr(this),this.messageNavigation=new Cr(this),this.messageObstacle=new pr(this),this.messageTrimmer=new Ar(this),this.messageSticker=new Or(this),this.messageAssetLabel=new gr(this),this.messageTarget=new Ir(this),this.messageWormhole=new Sr(this),this.messageSpaceFence=new Nr(this),this.messageDollyPath=new Lr(this),this.commandPlayer=new Bi(this),this.commandCover=new ki(this),this.commandUi=new Fi(this),this.commandInfoTemplate=new Gi(this),this.commandInformation=new xi(this),this.commandComponent=new Hi(this),this.commandFov=new Xi(this),this.commandLayer=new Yi(this),this.commandLight=new Wi(this),this.commandTrimmer=new Ki(this),this.commandSticker=new Ji(this),this.commandAssetLabel=new zi(this),this.commandSweep=new Qi(this),this.commandFloor=new ji(this),this.commandCamera=new Zi(this),this.commandRenderer=new qi(this),this.commandMarker=new $i(this),this.commandNavigation=new er(this),this.commandObstacle=new tr(this),this.commandAudio=new ar(this),this.commandTarget=new sr(this),this.commandWormhole=new nr(this),this.commandSpaceFence=new or(this),this.commandMonitor=new ir(this),this.commandMessageCard=new rr(this),this.commandDollyPath=new cr(this),this.iframeElement.addEventListener("load",(()=>{console.debug("[VRTalk Web SDK] player iframe loaded, add event listener"),window.addEventListener("message",(e=>{if(e.data.type&&0===e.data.type.indexOf("vrtalk_msg_")){const t=e.data;this.messageListenerPool.has(t.type)&&this.messageListenerPool.get(t.type).forEach((e=>{e(t)}))}}))}))}registerMessageListener(e,t){console.debug(`[VRTalk Web SDK]VRTalkEditablePlayer.registerMessageListener: ${e}`),this.messageListenerPool.get(e)||this.messageListenerPool.set(e,[]),this.messageListenerPool.get(e).push(t)}unRegisterMessageListener(e,t){if(console.debug(`[VRTalk Web SDK]VRTalkEditablePlayer.unRegisterMessageListener: ${e}`),!this.messageListenerPool.has(e))return;const a=this.messageListenerPool.get(e).indexOf(t);a>=0&&this.messageListenerPool.get(e).splice(a,1)}clearAllMessageListener(){console.debug("[VRTalk Web SDK] VRTalkEditablePlayer.clearAllMessageListener"),this.messageListenerPool.clear()}sendCommand(e){console.debug(`[VRTalk Web SDK]VRTalkEditablePlayer.sendCommand: ${e}`),this.iframeElement.contentWindow.postMessage(e,"*")}play(){console.debug("[VRTalk Web SDK]VRTalkEditablePlayer.play"),this.iframeElement.src=this.serviceRegion+"/vr-editor"}}function ur(e){switch(e){case W.TYPE_2D_IMAGE:return _s.COMPONENT_2D_IMAGE;case W.TYPE_2D_VIDEO:return _s.COMPONENT_2D_VIDEO;case W.TYPE_2D_TEXT:return _s.COMPONENT_2D_TEXT;case W.TYPE_2D_PANEL:return _s.COMPONENT_2D_PANEL;case W.TYPE_2D_ADVERTISEMENT:return _s.COMPONENT_2D_ADVERTISEMENT;case W.TYPE_3D_BOX:return _s.COMPONENT_3D_BOX;case W.TYPE_3D_MODEL:return _s.COMPONENT_3D_MODEL;case W.TYPE_TAG:return _s.COMPONENT_TAG;default:return _s.COMPONENT_2D_IMAGE}}function Pr(e,t,a,s,n){if(Array.isArray(e)&&0!==e.length)for(const o of e)o.id&&s.has(o.id)||(o.createSourceId||(o.createSourceType=t,o.createSourceId=a),n.push(o),o.id&&s.add(o.id))}function Mr(e){if(!e)return;Array.isArray(e.triggerList)||(e.triggerList=[]);const t=new Set;for(const a of e.triggerList)a.id&&t.add(a.id);const a=[];if(Array.isArray(e.componentList))for(const s of e.componentList){const e=ur(s.type),n=s;if(Pr(n.triggerList,e,s.id,t,a),n.triggerList=[],s.type===W.TYPE_2D_IMAGE){const e=s;if(Array.isArray(e.sourceList))for(const n of e.sourceList){const e=n;Pr(e.triggerList,_s.COMPONENT_2D_IMAGE,s.id,t,a),e.triggerList=[]}}else if(s.type===W.TYPE_2D_VIDEO){const e=s;if(Array.isArray(e.sourceList))for(const n of e.sourceList){const e=n;Pr(e.triggerList,_s.COMPONENT_2D_VIDEO,s.id,t,a),e.triggerList=[]}}else if(s.type===W.TYPE_2D_PANEL){const e=s;if(Array.isArray(e.sceneDataList))for(const n of e.sceneDataList){const e=n;Pr(e.triggerList,_s.COMPONENT_2D_PANEL,s.id,t,a),e.triggerList=[]}}}if(Array.isArray(e.sweepList))for(const s of e.sweepList){const e=s;Pr(e.triggerList,"sweep",s.id,t,a),e.triggerList=[]}if(Array.isArray(e.vrFloorList))for(const s of e.vrFloorList){const e=s;Pr(e.triggerList,"floor",s.id,t,a),e.triggerList=[]}if(Array.isArray(e.xrVirtualFloorList))for(const s of e.xrVirtualFloorList){const e=s;Pr(e.triggerList,"xr_virtual_floor",s.id,t,a),e.triggerList=[]}if(Array.isArray(e.variableList))for(const s of e.variableList){const e=s;Pr(e.triggerList,_s.LOGIC_VARIABLE,s.key,t,a),e.triggerList=[]}if(Array.isArray(e.variableExpressionWatcherList))for(const s of e.variableExpressionWatcherList){const e=s;Pr(e.triggerList,_s.LOGIC_EXPRESSION_WATCHER,s.id,t,a),e.triggerList=[]}if(Array.isArray(e.spaceFenceList))for(const s of e.spaceFenceList){const e=s;Pr(e.triggerList,_s.SPACE_FENCE,s.id,t,a),e.triggerList=[]}if(Array.isArray(e.spaceFenceGroupList))for(const s of e.spaceFenceGroupList){const e=s;Pr(e.triggerList,_s.SPACE_FENCE_GROUP,s.id,t,a),e.triggerList=[]}a.length>0&&e.triggerList.push(...a)}return t})()));
|
|
1
|
+
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var a=t();for(var s in a)("object"==typeof exports?exports:e)[s]=a[s]}}(this,(()=>(()=>{"use strict";var e={d:(t,a)=>{for(var s in a)e.o(a,s)&&!e.o(t,s)&&Object.defineProperty(t,s,{enumerable:!0,get:a[s]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{ArMultisetSettings:()=>ps,ChromaKeySettings:()=>_,Color:()=>d,ColorBuilder:()=>c,ColorParser:()=>l,Component2dFaceToCameraModeDefine:()=>j,EaseAnimationFunctionDefine:()=>E,EaseAnimationSettings:()=>m,FreeButton:()=>p,GotoPositionMethodDefine:()=>A,HoverBorderSettings:()=>O,LanguageTypeDefine:()=>g,LogicCurrentTimeOutputTypeDefine:()=>da,LogicRandomColorPaletteDefine:()=>ca,MediaLoopModeDefine:()=>L,MultiLanguageStr:()=>I,POPUP_USER_FORM_DEFAULT_STAR_ACTIVE_COLOR:()=>Sa,POPUP_USER_FORM_DEFAULT_STAR_INACTIVE_COLOR:()=>Na,ParentComCommandAssetLabel:()=>Wi,ParentComCommandAudio:()=>$i,ParentComCommandCamera:()=>zi,ParentComCommandComponent:()=>Fi,ParentComCommandCover:()=>Ui,ParentComCommandDollyPath:()=>or,ParentComCommandFloor:()=>Ji,ParentComCommandFov:()=>Gi,ParentComCommandInfoTemplate:()=>Bi,ParentComCommandInformation:()=>ki,ParentComCommandLayer:()=>xi,ParentComCommandLight:()=>Hi,ParentComCommandMarker:()=>ji,ParentComCommandMessageCard:()=>nr,ParentComCommandMonitor:()=>sr,ParentComCommandNavigation:()=>Zi,ParentComCommandObstacle:()=>qi,ParentComCommandPlayer:()=>Vi,ParentComCommandRenderer:()=>Qi,ParentComCommandSpaceFence:()=>ar,ParentComCommandSticker:()=>Xi,ParentComCommandSweep:()=>Ki,ParentComCommandTarget:()=>er,ParentComCommandTrimmer:()=>Yi,ParentComCommandUi:()=>fi,ParentComCommandWormhole:()=>tr,ParentComMessageAssetLabel:()=>pr,ParentComMessageCamera:()=>ir,ParentComMessageComponent:()=>rr,ParentComMessageDollyPath:()=>Ir,ParentComMessageFloor:()=>lr,ParentComMessageFov:()=>cr,ParentComMessageNavigation:()=>Er,ParentComMessageObstacle:()=>mr,ParentComMessagePlayer:()=>bi,ParentComMessageRenderer:()=>_r,ParentComMessageSpaceFence:()=>gr,ParentComMessageSticker:()=>Cr,ParentComMessageSweep:()=>dr,ParentComMessageTarget:()=>Ar,ParentComMessageTrimmer:()=>Tr,ParentComMessageWormhole:()=>Or,PlayerComCommand:()=>Go,PlayerComCommandAssetLabel:()=>ii,PlayerComCommandAudio:()=>oi,PlayerComCommandCamera:()=>ei,PlayerComCommandComponent:()=>Jo,PlayerComCommandCover:()=>Yo,PlayerComCommandDollyPath:()=>Ei,PlayerComCommandFloor:()=>$o,PlayerComCommandFov:()=>zo,PlayerComCommandInfoTemplate:()=>Wo,PlayerComCommandInformation:()=>Ko,PlayerComCommandLayer:()=>Qo,PlayerComCommandLight:()=>jo,PlayerComCommandMarker:()=>ai,PlayerComCommandMessageCard:()=>_i,PlayerComCommandMonitor:()=>di,PlayerComCommandNavigation:()=>si,PlayerComCommandObstacle:()=>ni,PlayerComCommandPlayer:()=>Ho,PlayerComCommandRenderer:()=>ti,PlayerComCommandSpaceFence:()=>li,PlayerComCommandSticker:()=>qo,PlayerComCommandSweep:()=>wi,PlayerComCommandTarget:()=>ri,PlayerComCommandTrimmer:()=>Zo,PlayerComCommandTypeDefine:()=>xo,PlayerComCommandUi:()=>Xo,PlayerComCommandWormhole:()=>ci,PlayerComMessage:()=>mi,PlayerComMessageAssetLabel:()=>Pi,PlayerComMessageCamera:()=>Ci,PlayerComMessageComponent:()=>pi,PlayerComMessageDollyPath:()=>hi,PlayerComMessageFloor:()=>Oi,PlayerComMessageFov:()=>Ai,PlayerComMessageNavigation:()=>Ni,PlayerComMessageObstacle:()=>Li,PlayerComMessagePlayer:()=>gi,PlayerComMessageRenderer:()=>Si,PlayerComMessageSpaceFence:()=>yi,PlayerComMessageSticker:()=>ui,PlayerComMessageSweep:()=>Ii,PlayerComMessageTarget:()=>Mi,PlayerComMessageTrimmer:()=>Ri,PlayerComMessageTypeDefine:()=>Ti,PlayerComMessageWormhole:()=>Di,PlayerController:()=>vi,PopupUserFormCommonIconPaths:()=>La,PopupUserFormControlConfig:()=>na,PopupUserFormControlVariantDefine:()=>ta,PopupUserFormDataTypeDefaultVariant:()=>aa,PopupUserFormDataTypeDefine:()=>ea,PopupUserFormField:()=>oa,PopupUserFormOption:()=>sa,PopupUserFormStarIconKeyDefine:()=>Ia,PopupUserFormStarIconKeyList:()=>ga,PopupUserFormStarIconPaths:()=>Oa,RendererResolution:()=>S,TakeScreenshotVisibility:()=>N,TtsTextModeDefine:()=>ft,UnityNavigationMode:()=>R,UnityNavigationParams:()=>u,UnityNavigationPlan:()=>P,VRTalkBaseData:()=>C,VRTalkEditablePlayer:()=>Sr,Vector2:()=>s,Vector3:()=>a,VrAction:()=>Ue,VrActionAnalyticsValueModeDefine:()=>Zt,VrActionCloudFormValueModeDefine:()=>Kt,VrActionHitAnalyticsEventFieldBinding:()=>qt,VrActionParams:()=>Ye,VrActionParams2dGeneralChangeDeformationSettings:()=>ze,VrActionParams2dImageChangeSource:()=>je,VrActionParams2dPanelButtonChangeEnabled:()=>at,VrActionParams2dPanelChangeScene:()=>tt,VrActionParams2dTextChangeSource:()=>Qe,VrActionParams2dVideoChangeMuteState:()=>$e,VrActionParams2dVideoChangePlayState:()=>qe,VrActionParams2dVideoChangeSource:()=>Ze,VrActionParams3dBoxChangeColor:()=>et,VrActionParams3dModelOperateAnimationClip:()=>ct,VrActionParamsAbilityEnable:()=>xe,VrActionParamsAbilityStop:()=>He,VrActionParamsAiAgentActivate:()=>Gt,VrActionParamsAiAgentHide:()=>xt,VrActionParamsAiAgentTriggerConversation:()=>Yt,VrActionParamsAiAgentTriggerMonologue:()=>Ht,VrActionParamsAudioCenterPlayList:()=>it,VrActionParamsAudioCenterPlayerChangeDisplayMode:()=>rt,VrActionParamsAudioCenterSetVolume:()=>Wt,VrActionParamsBackgroundThread:()=>Ft,VrActionParamsCameraDollyMove:()=>_t,VrActionParamsCameraDollyStop:()=>Et,VrActionParamsCameraMoveTo:()=>dt,VrActionParamsCanvasComponentChangeVisibility:()=>wt,VrActionParamsCloudFormCollectField:()=>zt,VrActionParamsCloudFormReset:()=>jt,VrActionParamsCloudFormShowDialog:()=>Jt,VrActionParamsCloudFormSubmit:()=>Qt,VrActionParamsComponentGeneralAudioSourceChangeLoopMode:()=>ot,VrActionParamsComponentGeneralAudioSourcePause:()=>nt,VrActionParamsComponentGeneralAudioSourcePlayControl:()=>st,VrActionParamsComponentGeneralChangeTransform:()=>Ke,VrActionParamsComponentGeneralChangeVisibility:()=>We,VrActionParamsComponentGeneralOperateTransitionAnimation:()=>Je,VrActionParamsFlowEnter:()=>Pt,VrActionParamsFlowExit:()=>Mt,VrActionParamsHamburgerMenuNodeChangeVisibility:()=>bt,VrActionParamsHitAnalyticsEvent:()=>$t,VrActionParamsInformationContentCardShow:()=>Ot,VrActionParamsInformationLinkOpen:()=>gt,VrActionParamsLayerChangeVisibility:()=>vt,VrActionParamsLogicCurrentTime:()=>_a,VrActionParamsLogicRandomColor:()=>la,VrActionParamsLogicRandomNumber:()=>ra,VrActionParamsLogicRandomPickBoolean:()=>Ta,VrActionParamsLogicRandomPickColor:()=>pa,VrActionParamsLogicRandomPickCssColor:()=>Aa,VrActionParamsLogicRandomPickEnum:()=>Ca,VrActionParamsLogicRandomPickNumber:()=>ma,VrActionParamsLogicRandomPickString:()=>Ea,VrActionParamsLogicVariableBooleanToggle:()=>ut,VrActionParamsLogicVariableModify:()=>It,VrActionParamsLogicVariableNumberAdd:()=>St,VrActionParamsLogicVariableStringAdvanced:()=>Rt,VrActionParamsLogicVariableStringAppend:()=>Nt,VrActionParamsLogicVariableStringTrimEnd:()=>Lt,VrActionParamsMessageCardChangeShowState:()=>Ut,VrActionParamsMonitorChangeEnabled:()=>Dt,VrActionParamsMonitorComponentChangeVisibility:()=>ht,VrActionParamsMonitorSwitchActiveTab:()=>yt,VrActionParamsNavigationStart:()=>lt,VrActionParamsPopupUserFormShowDialog:()=>ia,VrActionParamsSweepChangeEnabled:()=>mt,VrActionParamsSweepChangePanorama:()=>Tt,VrActionParamsSweepMarkerChangeEnabled:()=>Ct,VrActionParamsSweepOnlyEnableCurrent:()=>At,VrActionParamsSweepResetToDefault:()=>pt,VrActionParamsSystemCommonWait:()=>Xe,VrActionParamsSystemSetInteractiveState:()=>Xt,VrActionParamsSystemUiSettingsChange:()=>Vt,VrActionParamsTtsPlayVoice:()=>Bt,VrActionParamsTtsRealtimeStream:()=>kt,VrActionTypeDefine:()=>Ge,VrAdChannel:()=>Ra,VrAdItem:()=>ua,VrAiSettings:()=>Pa,VrAssetLabel:()=>Ma,VrAudio:()=>H,VrAudioCenter:()=>F,VrAudioList:()=>X,VrAudioLyric:()=>Y,VrCameraEnterSettings:()=>ms,VrCameraModeDefine:()=>n,VrCameraMoveTransitionTypeDefine:()=>o,VrCameraPose:()=>r,VrComponent2dAdvertisementData:()=>so,VrComponent2dDeformationModeDefine:()=>q,VrComponent2dDeformationSettings:()=>$,VrComponent2dImageData:()=>no,VrComponent2dImageSourceData:()=>oo,VrComponent2dPanelAnsweringModeSettings:()=>lo,VrComponent2dPanelButtonItemData:()=>Ao,VrComponent2dPanelButtonTypeDefine:()=>To,VrComponent2dPanelData:()=>ro,VrComponent2dPanelEnumModifierModeSettings:()=>_o,VrComponent2dPanelImageItemData:()=>Co,VrComponent2dPanelItem:()=>mo,VrComponent2dPanelItemStyle:()=>Io,VrComponent2dPanelItemTypeDefine:()=>Eo,VrComponent2dPanelSceneData:()=>co,VrComponent2dPanelSceneGeneralParams:()=>Oo,VrComponent2dPanelSceneModeDefine:()=>io,VrComponent2dPanelSceneStyle:()=>go,VrComponent2dPanelTextItemData:()=>po,VrComponent2dTextBasicModeSettings:()=>Po,VrComponent2dTextData:()=>Ro,VrComponent2dTextHorizontalAlignDefine:()=>So,VrComponent2dTextMarqueeModeSettings:()=>Mo,VrComponent2dTextModeDefine:()=>Lo,VrComponent2dTextSourceData:()=>uo,VrComponent2dTextVerticalAlignDefine:()=>No,VrComponent2dVideoData:()=>Do,VrComponent2dVideoSourceData:()=>yo,VrComponent3dBoxData:()=>ho,VrComponent3dModelAnimationClipData:()=>bo,VrComponent3dModelAnimationData:()=>vo,VrComponent3dModelData:()=>wo,VrComponentAudioSource:()=>x,VrComponentAudioSourceDistanceModelDefine:()=>G,VrComponentControllerTypeDefine:()=>K,VrComponentCustomVisibilitySettings:()=>Q,VrComponentData:()=>J,VrComponentData2d:()=>Z,VrComponentData2dCurvedSurfaceSettings:()=>ee,VrComponentData2dFoldSurfaceSettings:()=>te,VrComponentData3d:()=>ae,VrComponentNavigationSettings:()=>z,VrComponentTagData:()=>Uo,VrComponentTagTextLocationDefine:()=>Vo,VrComponentTransitionAnimation:()=>ne,VrComponentTransitionAnimationKeyframe:()=>oe,VrComponentTransitionAnimationPlayCompleteProcessTypeDefine:()=>se,VrComponentTypeDefine:()=>W,VrContentCard:()=>f,VrContentCardMedia:()=>k,VrContentCardMediaTypeDefine:()=>V,VrContentCardModule:()=>B,VrContentCardShowStyleDefine:()=>U,VrContentData:()=>As,VrContentDataBuilder:()=>Es,VrCoverBackgroundFitTypeDefine:()=>va,VrCoverBackgroundTypeDefine:()=>wa,VrCoverButtonTypeDefine:()=>ba,VrCoverSettings:()=>Va,VrFloor:()=>Os,VrFloorMapSettings:()=>gs,VrFlow:()=>Ps,VrFlowPositionSettings:()=>vs,VrFlowPositionTypeDefine:()=>ws,VrFlowStatusDefine:()=>us,VrFlowStep:()=>ys,VrFlowStepArriveAction:()=>hs,VrFlowStepBarStyleDefine:()=>Ds,VrFlowStepEndpointSettings:()=>Vs,VrFlowStepTypeDefine:()=>Ms,VrFlowTrigger:()=>bs,VrFov:()=>Us,VrInfoTemplateItemValue:()=>ha,VrInfoTemplateSettings:()=>ya,VrIntroduceItem:()=>Cs,VrLayer:()=>fs,VrLight:()=>Bs,VrLightAmbient:()=>ks,VrLightDirectional:()=>Fs,VrLightPoint:()=>Gs,VrMarker:()=>Hs,VrMarkerGroup:()=>Ys,VrMarkerTypeDefine:()=>xs,VrMeasureAreaUnitDefine:()=>Ws,VrMeasureData:()=>Ks,VrMeasureDistanceUnitDefine:()=>Xs,VrMeasurePoint:()=>Js,VrNavigationAdConfig:()=>zs,VrNavigationModeDefine:()=>D,VrNavigationPath:()=>v,VrNavigationPoint:()=>h,VrNavigationPointBuilder:()=>y,VrNavigationPointTypeDefine:()=>M,VrNavigationRequest:()=>w,VrNavigationResult:()=>b,VrObstacle:()=>Qs,VrObstacleGroup:()=>js,VrPlayerModeDefine:()=>fo,VrPlayerStatusDefine:()=>ko,VrPlayerStatusNumMapping:()=>Bo,VrPlayerStatusValue:()=>Fo,VrPlayerUiSettings:()=>Da,VrSignal:()=>Ls,VrSignalSourceDefine:()=>Ss,VrSignalTrigger:()=>Rs,VrSignalTypeDefine:()=>Is,VrSignalTypeSourceMapping:()=>Ns,VrSticker:()=>tn,VrStickerActivateTypeDefine:()=>en,VrSweep:()=>an,VrSweepAlignmentDefine:()=>sn,VrSweepCameraPose:()=>i,VrSweepPanoramaBallExternalViewModeDefine:()=>rn,VrSweepPanoramaData:()=>cn,VrSweepPanoramaSourceData:()=>ln,VrSweepPanoramaSourceTypeDefine:()=>on,VrSweepPlacementTypeDefine:()=>nn,VrTarget:()=>An,VrTargetGroup:()=>On,VrTheme:()=>dn,VrTrimmerData:()=>_n,VrView:()=>mn,VrViewTypeDefine:()=>Tn,VrWorldSizeInfo:()=>Ts,VrWormhole:()=>Cn,VrWormholeGroup:()=>pn,WorkNoteEnterTag:()=>Zs,XR_HAMBURGER_MENU_DEFAULT_COLOR:()=>Ba,XrAbility:()=>ao,XrAbilityGroup:()=>to,XrActionCategoryDefine:()=>be,XrAiAgent:()=>qn,XrAiAgentEffortLevelDefine:()=>jn,XrAiAgentRolePromptSettings:()=>Qn,XrAiAgentSkillPrompt:()=>Zn,XrAiAgentUseAbility:()=>Yn,XrAiAgentUseAnalyticsEvent:()=>zn,XrAiAgentUseBackgroundThread:()=>xn,XrAiAgentUseCameraDollyPath:()=>Hn,XrAiAgentUseCloudForm:()=>Kn,XrAiAgentUseComponent:()=>Un,XrAiAgentUseContentCard:()=>Xn,XrAiAgentUseFov:()=>Wn,XrAiAgentUseKnowledgeBase:()=>Jn,XrAiAgentUseSpaceFence:()=>Fn,XrAiAgentUseSpaceFenceGroup:()=>Gn,XrAiAgentUseSticker:()=>kn,XrAiAgentUseTarget:()=>fn,XrAiAgentUseVariable:()=>Bn,XrAudioCenterState:()=>we,XrBackgroundThread:()=>Vn,XrBackgroundThreadState:()=>ge,XrBackgroundThreadStatusDefine:()=>Oe,XrBaseAction:()=>Ve,XrCameraDollyPath:()=>eo,XrCameraDollyPathNode:()=>$n,XrComponentState2dImage:()=>Se,XrComponentState2dPanel:()=>Re,XrComponentState2dText:()=>Le,XrComponentState2dVideo:()=>Ne,XrComponentState3dBox:()=>ue,XrComponentState3dModel:()=>Pe,XrComponentStateBase:()=>Ie,XrComponentStateTag:()=>Me,XrConditionAction:()=>fe,XrCountLoopAction:()=>Be,XrExpressionLoopAction:()=>Fe,XrExpressionLoopActionCheckExpressionPositionDefine:()=>ke,XrHamburgerCanvasComponentBase:()=>is,XrHamburgerCanvasComponentButton:()=>_s,XrHamburgerCanvasComponentButtonIconPositionDefine:()=>os,XrHamburgerCanvasComponentImage:()=>rs,XrHamburgerCanvasComponentImageModeDefine:()=>es,XrHamburgerCanvasComponentProgressBar:()=>ls,XrHamburgerCanvasComponentProgressBarDirectionDefine:()=>ss,XrHamburgerCanvasComponentText:()=>cs,XrHamburgerCanvasComponentTextAlignDefine:()=>ts,XrHamburgerCanvasComponentTypeDefine:()=>$a,XrHamburgerCanvasComponentVerticalAlignDefine:()=>as,XrHamburgerCanvasComponentVideo:()=>ds,XrHamburgerCanvasComponentVideoObjectFitDefine:()=>ns,XrHamburgerMenu:()=>qa,XrHamburgerMenuCanvasItem:()=>Za,XrHamburgerMenuGroup:()=>za,XrHamburgerMenuImageItem:()=>Xa,XrHamburgerMenuImageItemSlide:()=>Ya,XrHamburgerMenuNode:()=>xa,XrHamburgerMenuNodeBase:()=>Ga,XrHamburgerMenuNodeTypeDefine:()=>ka,XrHamburgerMenuPcLayoutModeDefine:()=>Fa,XrHamburgerMenuRichTextItem:()=>ja,XrHamburgerMenuTextItem:()=>Ha,XrHamburgerMenuVideoItem:()=>Ka,XrHamburgerMenuVideoItemSlide:()=>Wa,XrHamburgerMenuWebViewItem:()=>Ja,XrMessageCard:()=>bn,XrMonitor:()=>vn,XrMonitorComponentBase:()=>Pn,XrMonitorComponentButton:()=>wn,XrMonitorComponentButtonIconPositionDefine:()=>un,XrMonitorComponentImage:()=>Mn,XrMonitorComponentImageModeDefine:()=>In,XrMonitorComponentProgressBar:()=>yn,XrMonitorComponentProgressBarDirectionDefine:()=>Ln,XrMonitorComponentRuntimeState:()=>De,XrMonitorComponentText:()=>Dn,XrMonitorComponentTextAlignDefine:()=>Sn,XrMonitorComponentTypeDefine:()=>gn,XrMonitorComponentVerticalAlignDefine:()=>Nn,XrMonitorComponentVideo:()=>hn,XrMonitorComponentVideoObjectFitDefine:()=>Rn,XrMonitorRuntimeState:()=>ye,XrNavigationState:()=>ve,XrPrepareSettings:()=>Ua,XrRuntimeState:()=>he,XrSpaceFence:()=>qs,XrSpaceFenceGroup:()=>$s,XrStateBindings:()=>Ae,XrStateBindingsSourceTypeDefine:()=>Ce,XrStateBindingsTargetTypeDefine:()=>pe,XrTypedValue:()=>_e,XrTypedValueModeDefine:()=>de,XrVariable:()=>re,XrVariableExpressionWatcher:()=>Te,XrVariablePreFill:()=>fa,XrVariableScope:()=>le,XrVariableScopeTypeDefine:()=>ce,XrVariableTarget:()=>Ee,XrVariableTypeDefine:()=>ie,XrVariableWatcherExpressionModeDefine:()=>me,XrVirtualFloor:()=>En,createEmptyRichTextDoc:()=>Qa,migrateTriggersToCentralized:()=>Rr});class a{x=0;y=0;z=0;constructor(e,t,a){this.x=e,this.y=t,this.z=a}}class s{x=0;y=0;constructor(e,t){this.x=e,this.y=t}}class n{static FLOORPLAN="floorplan";static INSIDE="inside";static OUTSIDE="outside";static TRANSITIONING="transitioning";static DOLLHOUSE="dollhouse"}class o{static FLY="fly";static INSTANT="instant";static FADE="fade"}class i{sweepId="";rotation=new s(0,0)}class r{floorId="";sweepId="";position=new a(0,0,0);rotation=new s(0,0);zoom=1;mode=n.INSIDE;originalEuler=new a(0,0,0)}class c{static createColorRgb(e,t,a){let s=new d;return s.r=e,s.g=t,s.b=a,s}static createColorRgba(e,t,a,s){let n=new d;return n.r=e,n.g=t,n.b=a,n.a=s,n}static createColorByStr(e){let t=new d;if(e.startsWith("#")){let a=e.substring(1);4===a.length?(t.r=parseInt(a.substring(0,1)+a.substring(0,1),16),t.g=parseInt(a.substring(1,2)+a.substring(1,2),16),t.b=parseInt(a.substring(2,3)+a.substring(2,3),16),t.a=parseInt(a.substring(3,4)+a.substring(3,4),16)/255):8===a.length?(t.r=parseInt(a.substring(0,2),16),t.g=parseInt(a.substring(2,4),16),t.b=parseInt(a.substring(4,6),16),t.a=parseInt(a.substring(6,8),16)/255):3===a.length?(t.r=parseInt(a.substring(0,1)+a.substring(0,1),16),t.g=parseInt(a.substring(1,2)+a.substring(1,2),16),t.b=parseInt(a.substring(2,3)+a.substring(2,3),16),t.a=1):6===a.length&&(t.r=parseInt(a.substring(0,2),16),t.g=parseInt(a.substring(2,4),16),t.b=parseInt(a.substring(4,6),16),t.a=1)}else if(e.startsWith("rgba")){let a=e.substring(5,e.length-1).split(",");t.r=parseInt(a[0]),t.g=parseInt(a[1]),t.b=parseInt(a[2]),t.a=parseFloat(a[3])}else if(e.startsWith("rgb")){let a=e.substring(4,e.length-1).split(",");t.r=parseInt(a[0]),t.g=parseInt(a[1]),t.b=parseInt(a[2]),t.a=1}return t}static createRandomColor(e,t){let a=new d;return a.r=Math.floor(256*Math.random()),a.g=Math.floor(256*Math.random()),a.b=Math.floor(256*Math.random()),a.a=e?Math.random():t||1,a}}class l{static colorToRgbaString(e){return e?`rgba(${e.r}, ${e.g}, ${e.b}, ${e.a})`:"rgba(0, 0, 0, 1)"}static colorToHexString(e){const t=e=>{const t=Math.round(e).toString(16);return 1===t.length?`0${t}`:t};return`#${t(e.r)}${t(e.g)}${t(e.b)}`}static colorToTHREEColor(e){return{r:e.r/255,g:e.g/255,b:e.b/255}}}class d{r=0;g=0;b=0;a=1}class _{enabled=!1;color=c.createColorRgb(0,0,0);tolerance=20}class E{static LINEAR="linear";static EASE_IN_QUAD="easeInQuad";static EASE_OUT_QUAD="easeOutQuad";static EASE_IN_OUT_QUAD="easeInOutQuad";static EASE_OUT_IN_QUAD="easeOutInQuad";static EASE_IN_CUBIC="easeInCubic";static EASE_OUT_CUBIC="easeOutCubic";static EASE_IN_OUT_CUBIC="easeInOutCubic";static EASE_OUT_IN_CUBIC="easeOutInCubic";static EASE_IN_QUART="easeInQuart";static EASE_OUT_QUART="easeOutQuart";static EASE_IN_OUT_QUART="easeInOutQuart";static EASE_OUT_IN_QUART="easeOutInQuart";static EASE_IN_QUINT="easeInQuint";static EASE_OUT_QUINT="easeOutQuint";static EASE_IN_OUT_QUINT="easeInOutQuint";static EASE_OUT_IN_QUINT="easeOutInQuint";static EASE_IN_SINE="easeInSine";static EASE_OUT_SINE="easeOutSine";static EASE_IN_OUT_SINE="easeInOutSine";static EASE_OUT_IN_SINE="easeOutInSine";static EASE_IN_EXPO="easeInExpo";static EASE_OUT_EXPO="easeOutExpo";static EASE_IN_OUT_EXPO="easeInOutExpo";static EASE_OUT_IN_EXPO="easeOutInExpo";static EASE_IN_CIRC="easeInCirc";static EASE_OUT_CIRC="easeOutCirc";static EASE_IN_OUT_CIRC="easeInOutCirc";static EASE_OUT_IN_CIRC="easeOutInCirc";static EASE_IN_BACK="easeInBack";static EASE_OUT_BACK="easeOutBack";static EASE_IN_OUT_BACK="easeInOutBack";static EASE_OUT_IN_BACK="easeOutInBack";static EASE_IN_BOUNCE="easeInBounce";static EASE_OUT_BOUNCE="easeOutBounce";static EASE_IN_OUT_BOUNCE="easeInOutBounce";static EASE_OUT_IN_BOUNCE="easeOutInBounce";static CUBIC_BEZIER_CURVE="cubicBezierCurve";static SPRING="spring";static ELASTIC="elastic"}class m{waitTime=0;easeFunction=E.LINEAR;duration=500;cubicBezierCurveParamX1=.5;cubicBezierCurveParamY1=.05;cubicBezierCurveParamX2=.1;cubicBezierCurveParamY2=.3;springParamMass=1;springParamStiffness=80;springParamDamping=10;springParamVelocity=0;elasticParamType="easeOutElastic";elasticParamAmplitude=1;elasticParamPeriod=.6}class T{static randomUUID(e){return(e?"xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx":"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx").replace(/[xy]/g,(e=>{const t=16*Math.random()|0;return("x"==e?t:3&t|8).toString(16)}))}}class C{id="";constructor(){this.id=T.randomUUID(!0)}}class p extends C{name="";color=c.createColorByStr("#444444");textColor=c.createColorByStr("#ffffff");additionalData={};clickActionList=[];localVariableList=[]}class A{static NAVIGATION_TO_MANUAL="navigation_to_manual";static NAVIGATION_TO_AUTO="navigation_to_auto";static DIRECT_TO_FLY="direct_to_fly";static DIRECT_TO_FADE="direct_to_fade";static DIRECT_TO_INSTANT="direct_to_instant"}class O{enabled=!1;hoverBorderColor=c.createColorRgba(0,0,0,1);borderWidth=.01}class g{static ZH_CN="zh_cn";static ZH_TW="zh_tw";static ZH_HK="zh_hk";static EN="en";static KR="kr";static JP="jp";static TH="th";static VN="vn";static ES="es";static FR="fr";static DE="de"}class I{original_content="";language_type=g.EN;zh_cn="";zh_tw="";zh_hk="";en="";kr="";jp="";th="";vn="";es="";fr="";de=""}class S{width=1920;height=1080;constructor(e,t){this.width=e,this.height=t}}class N{mattertags=!1;measurements;sweeps;views;components;constructor(e,t,a,s,n){this.mattertags=e,this.measurements=t,this.sweeps=a,this.views=s,this.components=n}}class L{static NO_LOOP="no_loop";static LOOP_ALL="loop_all";static LOOP_SINGLE="loop_single"}class R extends C{name="";description="";title="";code="";enabled=!1;planList=[]}class u{transformPointsGps=[];transformPointsVrSpace=[new a(0,0,0),new a(0,0,0),new a(0,0,0)];cellSize=.1;walkableHeight=1.6;characterRadius=.2;walkableClimb=1;maxSlope=45;maxEdgeLength=1;leadBotUseSameModelForDifferentAction=!0;leadBotModelSrc="";leadBotModelScale=new a(1,1,1);leadBotModelOverlayRotate=new a(0,0,0);leadBotModelSrcStand="";leadBotModelScaleStand=new a(1,1,1);leadBotModelOverlayRotateStand=new a(0,0,0);leadBotModelSrcWalk="";leadBotModelScaleWalk=new a(1,1,1);leadBotModelOverlayRotateWalk=new a(0,0,0);leadBotModelSrcRun="";leadBotModelScaleRun=new a(1,1,1);leadBotModelOverlayRotateRun=new a(0,0,0);leadBotModelSrcArrive="";leadBotModelScaleArrive=new a(1,1,1);leadBotModelOverlayRotateArrive=new a(0,0,0);leadBotAnimationNameStand="";leadBotAnimationNameWalk="";leadBotAnimationNameRun="";leadBotAnimationNameArrive="";thresholdLeadBotDistanceToPlayer=6;thresholdLeadBotDistanceToPlayerToWalk=4;thresholdLeadBotDistanceToPlayerToClimb=.4;thresholdLeadBotDistanceToPlayerToClimbToWalk=0;thresholdLeadBotDistanceToPlayerToDescend=3.5;thresholdLeadBotDistanceToPlayerToDescendToWalk=2;thresholdLeadBotDistanceToPlayerToRun=2;leadBotSpeedRun=3.5;leadBotSpeedWalk=1.35;thresholdUserDistanceToRoute=3;thresholdShowComponents=50;thresholdVideoComponentInvisibleToPause=3;thresholdDestroyComponents=10;thresholdShowComponentsWhenEnterFloor=5}class P extends C{name="";title=new I;description=new I;obstacleGroupIds=[];wormholeGroupIds=[];targetGroupIds=[];graphCacheZipFileSrc=""}class M{static sweep="sweep";static anywhere="anywhere";static teleport="teleport"}class D{static AUTO="auto";static MANUAL="manual";static MANUAL_SIMPLE="manual_simple"}class y{static createSweepPoint(e){const t=new h;return t.type=M.sweep,t.sweepId=e.id,t.position=e.position,t}static createAnywherePoint(e){const t=new h;return t.type=M.anywhere,t.position=e,t}}class h{type=M.sweep;sweepId="";position=new a(0,0,0)}class w{id="";startPoint=new h;endPoint=new h;isAutoStart=!0;navigationMode=D.MANUAL;autoRecalculate=!0;autoRecalculateDistanceThreshold=.5;pathColor=c.createColorByStr("#03b203")}class v{sweepStartPoint=new h;sweepEndPoint=new h;pathPoints=[]}class b{request=new w;result=!1;pathList=[]}class V{static VIDEO="video";static IMAGE="image";static AUDIO="audio";static D3_MODEL="3d_model";static LINK="link";static DOCUMENT="document"}class U{static BUBBLE="bubble";static DIALOG="dialog";static DRAWER="drawer"}class f extends C{id="";name="";dialogWidth="800px";dialogHeight="600px";title="";richText="";isAvailableForAi=!0;modules=[];buttonList=[]}class B{id="";name="";type=V.IMAGE;mediaList=[]}class k{id="";type=V.VIDEO;name="";src="";coverSrc="";materialSrc=""}class F{showPlayControl=!0;showSoundControl=!0;defaultVolume=100;loopMode=L.NO_LOOP;defaultPlayAudio=[];audioListData=[]}class G{static LINEAR="linear";static INVERSE="inverse";static EXPONENTIAL="exponential"}class x{loopMode=L.NO_LOOP;autoPlay=!1;volume=1;defaultAudioIndex=0;distanceModel=G.LINEAR;rolloffFactor=1;refDistance=1;maxDistance=10;audioDataList=[]}class H extends C{name="";description="";audioSrc="";duration=0;lyricList=[]}class Y{time="00:00";content="";color=c.createColorByStr("#ffffff")}class X extends C{name="";description="";audioList=[]}class W{static TYPE_2D_TEXT="2d_text";static TYPE_2D_VIDEO="2d_video";static TYPE_2D_IMAGE="2d_image";static TYPE_2D_PANEL="2d_panel";static TYPE_2D_ADVERTISEMENT="2d_advertisement";static TYPE_3D_BOX="3d_box";static TYPE_3D_MODEL="3d_model";static TYPE_TAG="tag"}class K{static NONE="none";static TRANSLATE="translate";static ROTATE="rotate";static SCALE="scale"}class J extends C{layerId="";name="";title=new I;description=new I;isAvailableForAi=!0;isNavigationTarget=!0;ignoreOptimizationAlwaysShow=!1;type=null;scale=new a(1,1,1);position=new a(0,0,0);rotation=new a(0,0,0);originalScale=new a(1,1,1);visible=!0;opacity=1;isEnableAutoMoveCameraToNearWhenClick=!1;responseMouse=!0;markerList=[];showInContentMenu=!0;keywords=[];bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode="";customVisibilitySettings=new Q;transitionAnimationList=[];defaultTransitionAnimationId="";audioSource=new x;showTransitionAnimationId="";hideTransitionAnimationId="";localVariableList=[]}class z{allowAsDestination=!1}class Q{specialSweepVisible=!1;displayRange=0;visibleSweepList=[]}class j{static KEEP_ORIGINAL="keep-original";static FACE_TO_CAMERA_Y="face-to-camera-y";static FACE_TO_CAMERA_XYZ="face-to-camera-xyz"}class Z extends J{onlyFrontVisible=!1;faceToCameraMode=j.KEEP_ORIGINAL;hoverBorderSettings=new O;deformationSettings=new $}class q{static NONE="none";static CURVED_SURFACE="curved-surface";static FOLD_SURFACE="fold-surface"}class ${mode=q.NONE;curvedSurfaceSettings=new ee;foldSurfaceSettings=new te}class ee{curveDegree=1}class te{foldPosition=.5;foldAngle=0;foldInside=!1;foldRadius=.1}class ae extends J{}class se{static STAY_AT_LAST_FRAME="stay-at-last-frame";static JUMP_TO_ORIGINAL_STATE="jump-to-original-state";static LOOP_FROM_ORIGINAL_STATE="loop-from-original-state";static ANIMATE_TO_ORIGINAL_STATE="animate-to-original-state";static LOOP_REVERSE="loop-reverse"}class ne{id="";name="";description="";playCompleteProcessType=se.STAY_AT_LAST_FRAME;keyFrameList=[]}class oe{id="";name="";isTransformTranslate=!1;transformTranslate=new a(0,0,0);isTransformRotate=!1;transformRotate=new a(0,0,0);isTransformScale=!1;transformScale=new a(1,1,1);isOpacity=!1;opacity=1;modelAnimationClipId="";easingAnimationSettings=new m}class ie{static STRING="string";static NUMBER="number";static BOOLEAN="boolean";static ENUM="enum";static COLOR="color";static CSS_COLOR="css_color"}class re{key="";name="";type="string";value="";stringDefaultValue="";numberDefaultValue=0;numberStep=1;numberMinValue=0;numberMaxValue=0;booleanDefaultValue=!1;enumOptions=[];enumDefaultValue="";colorDefaultValue=c.createColorRgba(255,255,255,1);cssColorDefaultValue="#ffffff"}class ce{static GLOBAL="global";static LOCAL="local";static STEP="step";static FLOW="flow";static ABILITY="ability"}class le{type=ce.LOCAL;ownerId="";variableList=[]}class de{static LITERAL="literal";static VARIABLE="variable"}class _e{mode=de.LITERAL;literal;variableScope;variableKey}class Ee{scope=ce.GLOBAL;key=""}class me{static RISING_EDGE_TRIGGER="rising-edge-trigger";static LEVEL_TRIGGER="level-trigger"}class Te extends C{name="";remark="";expression="";expressionMode=me.RISING_EDGE_TRIGGER}class Ce{static XR_VARIABLE_EXPRESSION="xr-variable-expression";static STICKER_ACTIVE_STATE="sticker-active-state";static SPACE_FENCE_USER_IN_STATE="space-fence-user-in-state";static SPACE_FENCE_GROUP_USER_IN_STATE="space-fence-group-user-in-state";static COMPONENT_VISIBLE_STATE="component-visible-state";static LAYER_VISIBLE_STATE="layer-visible-state";static HAMBURGER_MENU_NODE_VISIBLE_STATE="hamburger-menu-node-visible-state"}class pe{static XR_VARIABLE="xr-variable";static COMPONENT_VISIBLE_STATE="component-visible-state";static LAYER_VISIBLE_STATE="layer-visible-state";static MESSAGE_CARD_SHOW_STATE="message-card-show-state";static COMPONENT_2D_PANEL_BUTTON_ENABLED_STATE="component-2d-panel-button-enabled-state";static MONITOR_COMPONENT_VISIBLE_STATE="monitor-component-visible-state";static CANVAS_COMPONENT_VISIBLE_STATE="canvas-component-visible-state";static COMPONENT_2D_PANEL_SCENE_SWITCH="component-2d-panel-scene-switch";static COMPONENT_2D_IMAGE_SOURCE_SWITCH="component-2d-image-source-switch";static COMPONENT_2D_VIDEO_SOURCE_SWITCH="component-2d-video-source-switch";static COMPONENT_3D_MODEL_ANIMATION_CLIP_SWITCH="component-3d-model-animation-clip-switch";static AI_AGENT_ENABLED_STATE="ai-agent-enabled-state";static HAMBURGER_MENU_NODE_VISIBLE_STATE="hamburger-menu-node-visible-state"}class Ae{enabled=!0;name="";remark="";sourceType=Ce.XR_VARIABLE_EXPRESSION;sourceExpression="";sourceId="";reverseSource=!1;targetType=pe.XR_VARIABLE;targetId="";targetOptionTrue="";targetOptionFalse=""}class Oe{static IDLE="idle";static RUNNING="running";static PAUSED="paused";static STOPPED="stopped"}class ge{threadId="";status="idle";completedCycles=0;currentActionIndex=0}class Ie{position=new a(0,0,0);rotation=new a(0,0,0);scale=new a(1,1,1);visible=!0;opacity=1;responseMouse=!0;playingTransitionAnimationId=null;audioPlayingId=null;audioVolume=1;audioLoopMode=L.NO_LOOP;audioPaused=!0}class Se extends Ie{currentSourceId="";autoChangeInterval=0}class Ne extends Ie{currentSourceId="";playing=!1;muted=!1;loopMode=L.NO_LOOP;playbackRate=1}class Le extends Ie{currentSourceId=""}class Re extends Ie{currentSceneId="";buttonEnabledState={}}class ue extends Ie{faceColor=c.createColorRgba(0,255,0,.2);borderColor=c.createColorRgba(0,255,0,.5);hoverFaceColor=c.createColorRgba(0,255,0,.5);hoverBorderColor=c.createColorRgba(0,255,0,.8)}class Pe extends Ie{playingAnimationClipId=null}class Me extends Ie{}class De{id="";type="text";name="";positionX=0;positionY=0;width=200;height=150;rotation=0;opacity=1;backgroundColor="rgba(255,255,255,0)";hoverStyleEnabled=!1;hoverBackgroundColor="rgba(255,255,255,0)";hoverOpacity=1;clickActionList=[];visible=!0;zIndex=1;radius=0;border="none";paddingX=6;paddingY=6;css={};script="";imageSrc="";imageMode="fill";textContent="";textColor="rgba(255,255,255,1)";textSize=16;textAlign="center";textBold=!1;textItalic=!1;textVerticalAlign="middle";progressBarColor="#4eb931";progressRange=100;progressBarDirection="horizontal";progress="0";videoSrc="";poster="";autoplay=!1;muted=!0;loop=!1;controls=!0;objectFit="cover";iconSrc="";iconPosition="left"}class ye{enabled=!0;componentStates={}}class he extends C{variableValue={};activeTriggerPool=[];triggerExecuteCount={};audioCenterState=new we;navigationState=new ve;globalMuted=!1;componentState2dImage={};componentState2dVideo={};componentState2dText={};componentState2dPanel={};componentState3dBox={};componentState3dModel={};componentStateTag={};monitorState={};activeMonitorTab="";canvasState={};layerVisibility={};messageCardShowState={};stickerActiveState={};sweepEnabledState={};backgroundThreadState={};abilityState={};flowScopeValue={};flowStepScopeValue={};enabledAiAgentIds=[];activeAiAgentId=null;hamburgerMenuVisibility={};playerUiSettings={}}class we{playingAudioListId="";playingAudioId="";displayMode="mini"}class ve{isNavigating=!1;destinationType="sweep";destinationSweepId="";destinationPosition=new a(0,0,0);navigationMode="manual"}class be{static BASIC="basic";static CONDITION="condition";static COUNT_LOOP="count_loop";static EXPRESSION_LOOP="expression_loop"}class Ve{actionCategory=be.BASIC;backgroundColorMark="rgba(255,255,255,1)"}class Ue extends Ve{actionCategory=be.BASIC;id="";actionType=Ge.COMPONENT_2D_IMAGE_CHANGE_SOURCE;params=new Ye}class fe{actionCategory=be.CONDITION;ifExpression="";ifActionList=[];elseActionList=[]}class Be{actionCategory=be.COUNT_LOOP;loopCount=1;loopCountRef;actionList=[]}class ke{static BEFORE_ACTION="before_action";static AFTER_ACTION="after_action"}class Fe{actionCategory=be.EXPRESSION_LOOP;checkExpression="";checkExpressionPosition=ke.BEFORE_ACTION;actionList=[]}class Ge{static SYSTEM_COMMON_WAIT="system_common_wait";static COMPONENT_GENERAL_CHANGE_VISIBILITY="component_general_change_visibility";static COMPONENT_GENERAL_CHANGE_TRANSFORM="component_general_change_transform";static COMPONENT_GENERAL_PLAY_TRANSITION_ANIMATION="component_general_play_transition_animation";static COMPONENT_GENERAL_STOP_TRANSITION_ANIMATION="component_general_stop_transition_animation";static COMPONENT_2D_GENERAL_CHANGE_DEFORMATION_SETTINGS="component_2d_general_change_deformation_settings";static COMPONENT_GENERAL_AUDIO_SOURCE_PLAY_CONTROL="component_general_audio_source_play_control";static COMPONENT_GENERAL_AUDIO_SOURCE_PAUSE="component_general_audio_source_pause";static COMPONENT_GENERAL_AUDIO_SOURCE_CHANGE_LOOP_MODE="component_general_audio_source_change_loop_mode";static COMPONENT_2D_IMAGE_CHANGE_SOURCE="component_2d_image_change_source";static COMPONENT_2D_VIDEO_CHANGE_SOURCE="component_2d_video_change_source";static COMPONENT_2D_VIDEO_CHANGE_PLAY_STATE="component_2d_video_change_play_state";static COMPONENT_2D_VIDEO_CHANGE_MUTE_STATE="component_2d_video_change_mute_state";static COMPONENT_2D_TEXT_CHANGE_SOURCE="component_2d_text_change_source";static COMPONENT_2D_PANEL_CHANGE_SCENE="component_2d_panel_change_scene";static COMPONENT_2D_PANEL_BUTTON_CHANGE_ENABLED="component_2d_panel_button_change_enabled";static COMPONENT_3D_BOX_CHANGE_COLOR="component_3d_box_change_color";static COMPONENT_3D_MODEL_PLAY_ANIMATION_CLIP="component_3d_model_play_animation_clip";static COMPONENT_3D_MODEL_STOP_ANIMATION_CLIP="component_3d_model_stop_animation_clip";static INFORMATION_CONTENT_CARD_SHOW="information_content_card_show";static INFORMATION_CONTENT_CARD_CLOSE="information_content_card_close";static INFORMATION_LINK_OPEN="information_link_open";static INFORMATION_LINK_CLOSE="information_link_close";static AUDIO_CENTER_PLAY_LIST="audio_center_play_list";static AUDIO_CENTER_PAUSE="audio_center_pause";static AUDIO_CENTER_PLAYER_CHANGE_DISPLAY_MODE="audio_center_player_change_display_mode";static SWEEP_CHANGE_ENABLED="sweep_change_enabled";static SWEEP_CHANGE_PANORAMA="sweep_change_panorama";static SWEEP_MARKER_CHANGE_ENABLED="sweep_marker_change_enabled";static SWEEP_RESET_TO_DEFAULT="sweep_reset_to_default";static SWEEP_ONLY_ENABLE_CURRENT="sweep_only_enable_current";static CAMERA_MOVE_TO="camera_move_to";static CAMERA_DOLLY_MOVE="camera_dolly_move";static CAMERA_DOLLY_STOP="camera_dolly_stop";static NAVIGATION_START="navigation_start";static NAVIGATION_STOP="navigation_stop";static LOGIC_VARIABLE_MODIFY="logic_variable_modify";static LOGIC_VARIABLE_NUMBER_ADD="logic_variable_number_add";static LOGIC_VARIABLE_NUMBER_SUBTRACT="logic_variable_number_subtract";static LOGIC_VARIABLE_STRING_APPEND="logic_variable_string_append";static LOGIC_VARIABLE_STRING_TRIM_END="logic_variable_string_trim_end";static LOGIC_VARIABLE_STRING_ADVANCED="logic_variable_string_advanced";static LOGIC_VARIABLE_BOOLEAN_TOGGLE="logic_variable_boolean_toggle";static FLOW_ENTER="flow_enter";static FLOW_EXIT="flow_exit";static MONITOR_CHANGE_ENABLED="monitor_change_enabled";static MONITOR_SWITCH_ACTIVE_TAB="monitor_switch_active_tab";static MONITOR_COMPONENT_CHANGE_VISIBILITY="monitor_component_change_visibility";static LAYER_CHANGE_VISIBILITY="layer_change_visibility";static HAMBURGER_MENU_NODE_CHANGE_VISIBILITY="hamburger_menu_node_change_visibility";static CANVAS_COMPONENT_CHANGE_VISIBILITY="canvas_component_change_visibility";static SYSTEM_UI_SETTINGS_CHANGE="system_ui_settings_change";static MESSAGE_CARD_CHANGE_SHOW_STATE="message_card_change_show_state";static TTS_PLAY_VOICE="tts_play_voice";static TTS_REALTIME_STREAM="tts_realtime_stream";static BACKGROUND_THREAD_START="background_thread_start";static BACKGROUND_THREAD_PAUSE="background_thread_pause";static BACKGROUND_THREAD_STOP="background_thread_stop";static AI_AGENT_ACTIVATE="ai_agent_activate";static AI_AGENT_HIDE="ai_agent_hide";static AI_AGENT_TRIGGER_MONOLOGUE="ai_agent_trigger_monologue";static AI_AGENT_TRIGGER_CONVERSATION="ai_agent_trigger_conversation";static SYSTEM_SET_INTERACTIVE_STATE="system_set_interactive_state";static AUDIO_CENTER_SET_VOLUME="audio_center_set_volume";static ABILITY_ENABLE="ability_enable";static ABILITY_STOP="ability_stop";static CLOUD_FORM_SHOW_DIALOG="cloud_form_show_dialog";static CLOUD_FORM_COLLECT_FIELD="cloud_form_collect_field";static CLOUD_FORM_SUBMIT="cloud_form_submit";static CLOUD_FORM_RESET="cloud_form_reset";static HIT_ANALYTICS_EVENT="hit_analytics_event";static POPUP_USER_FORM_SHOW_DIALOG="popup_user_form_show_dialog";static LOGIC_RANDOM_NUMBER="logic_random_number";static LOGIC_RANDOM_COLOR="logic_random_color";static LOGIC_CURRENT_TIME="logic_current_time";static LOGIC_RANDOM_PICK_STRING="logic_random_pick_string";static LOGIC_RANDOM_PICK_NUMBER="logic_random_pick_number";static LOGIC_RANDOM_PICK_BOOLEAN="logic_random_pick_boolean";static LOGIC_RANDOM_PICK_ENUM="logic_random_pick_enum";static LOGIC_RANDOM_PICK_COLOR="logic_random_pick_color";static LOGIC_RANDOM_PICK_CSS_COLOR="logic_random_pick_css_color"}class xe{abilityId="";contextVariableOverrides={};contextVariableOverrideRefs}class He{abilityId=""}class Ye{}class Xe{duration=1e3;durationRef}class We{componentIdList=[];visibilityState=!0;visibilityStateRef}class Ke{componentId="";changeType="translate";value=new a(0,0,0);valueXRef;valueYRef;valueZRef}class Je{componentId="";transitionAnimationId=""}class ze{componentId="";deformationSettings=new $}class Qe{componentId="";changeType="next";sourceId=""}class je{componentId="";changeType="next";sourceId=""}class Ze{componentId="";changeType="next";sourceId="";autoPlay=!1;autoPlayRef;forceUnmute=!1;forceUnmuteRef}class qe{componentId="";play=!0;playRef}class $e{componentId="";mute=!0;muteRef}class et{componentId="";faceColor=c.createColorRgba(0,0,0,1);faceColorRef;borderColor=c.createColorRgba(0,0,0,1);borderColorRef;hoverFaceColor=c.createColorRgba(0,0,0,1);hoverFaceColorRef;hoverBorderColor=c.createColorRgba(0,0,0,1);hoverBorderColorRef}class tt{componentId="";sceneId=""}class at{componentId="";sceneId="";buttonId="";enabled=!0;enabledRef}class st{componentId="";changeType="next";audioIndex=-1;audioId=""}class nt{componentId=""}class ot{componentId="";loopMode=L.NO_LOOP}class it{audioListId="";audioId=""}class rt{displayMode="mini"}class ct{componentId="";animationClipId=""}class lt{destinationType="sweep";componentId="";vrFovId="";fovLink="";fovLinkSnapshotSrc="";fovLinkCameraRotation=new s(0,0);fovLinkSweepId="";sweepId="";navigationMode=D.MANUAL;autoRecalculate=!0;autoRecalculateDistanceThreshold=.5;pathColor=c.createColorByStr("#03b203")}class dt{destinationType="sweep";componentId="";vrFovId="";fovLink="";fovLinkSnapshotSrc="";fovLinkCameraRotation=new s(0,0);fovLinkSweepId="";sweepId="";transitionType=o.FLY;transitionTime=1e3;transitionTimeRef}class _t{dollyPathId=""}class Et{}class mt{sweepIdList=[];enabled=!0;enabledRef;mode="set"}class Tt{sweepId="";panoramaId=""}class Ct{markerIdList=[];enabled=!0;enabledRef;mode="set"}class pt{}class At{}class Ot{contentCardId="";showStyle=U.DRAWER}class gt{url="";urlRef;isOpenWithExternal=!1;isOpenWithExternalRef}class It{variableKey="";variableScope;value="";valueRef}class St{variableKey="";variableScope;value=0;valueRef}class Nt{variableKey="";variableScope;sourceType="fixed";content="";contentRef}class Lt{variableKey="";variableScope;length=1;lengthRef}class Rt{variableKey="";variableScope;expression=""}class ut{variableKey="";variableScope}class Pt{flowId="";forceStopRunning=!1}class Mt{}class Dt{monitorId="";enabled=!0;enabledRef}class yt{tabId=""}class ht{monitorId="";componentIdList=[];visible=!0;visibleRef}class wt{hamburgerMenuNodeId="";componentIdList=[];visible=!0;visibleRef}class vt{layerIdList=[];visible=!0;visibleRef}class bt{nodeIdList=[];visible=!0;visibleRef}class Vt{settingKey="";value=!0;valueRef}class Ut{messageCardIdList=[];showState=!0;showStateRef}class ft{static SIMPLE="simple";static EXPRESSION="expression"}class Bt{voiceId="";textMode="simple";text="";textRef;textExpression="";showSubtitle=!0;waitForComplete=!0;languageCode="";speed=1;componentId=""}class kt{voiceId="";textMode="simple";text="";textRef;textExpression="";showSubtitle=!0;waitForComplete=!1;languageCode="";speed=1;componentId=""}class Ft{threadId=""}class Gt{agentId=""}class xt{agentId=""}class Ht{agentId=""}class Yt{agentId=""}class Xt{interactive=!0;interactiveRef}class Wt{volume=100;volumeRef}class Kt{static LITERAL="LITERAL";static EXPRESSION="EXPRESSION"}class Jt{cloudFormDataKey="";onSubmitSuccessActions=[];onAlreadySubmittedActions=[]}class zt{cloudFormDataKey="";fieldDataKey="";valueMode=Kt.LITERAL;literalValue=null;expression=""}class Qt{cloudFormDataKey="";onSuccessActions=[];onFailActions=[]}class jt{cloudFormDataKey=""}class Zt{static LITERAL="LITERAL";static USER_VARIABLE="USER_VARIABLE";static EXPRESSION="EXPRESSION"}class qt{fieldKey="";valueMode=Zt.LITERAL;literalValue=null;variableKey="";variableScope;expression=""}class $t{analyticsEventDataKey="";fieldBindings=[]}class ea{static STRING="string";static NUMBER="number";static BOOLEAN="boolean";static ENUM="enum";static COLOR="color";static CSS_COLOR="css_color"}class ta{static NUMBER_INPUT="number_input";static NUMBER_SLIDER="number_slider";static NUMBER_SLIDER_VERTICAL="number_slider_vertical";static NUMBER_STEPPER="number_stepper";static NUMBER_STAR_RATING="number_star_rating";static NUMBER_SEGMENT="number_segment";static NUMBER_EMOJI_SCALE="number_emoji_scale";static NUMBER_DIAL="number_dial";static NUMBER_PROGRESS_TAP="number_progress_tap";static NUMBER_CHIP_TILE="number_chip_tile";static STRING_INPUT="string_input";static STRING_TEXTAREA="string_textarea";static STRING_SELECT="string_select";static STRING_AUTOCOMPLETE="string_autocomplete";static STRING_SEGMENT="string_segment";static STRING_RADIO="string_radio";static STRING_TAG="string_tag";static STRING_CARD_GRID="string_card_grid";static STRING_AVATAR_LIST="string_avatar_list";static STRING_COLOR_SWATCH="string_color_swatch";static BOOLEAN_SWITCH="boolean_switch";static BOOLEAN_CHECKBOX="boolean_checkbox";static BOOLEAN_SEGMENT="boolean_segment";static BOOLEAN_THUMB="boolean_thumb";static BOOLEAN_CARD_PAIR="boolean_card_pair";static COLOR_PICKER="color_picker";static COLOR_SWATCH_PICKER="color_swatch_picker";static CSS_COLOR_INPUT="css_color_input";static CSS_COLOR_SWATCH_PICKER="css_color_swatch_picker";static CSS_COLOR_ADVANCED="css_color_advanced"}class aa{static getDefault(e){return"number"===e?ta.NUMBER_INPUT:"boolean"===e?ta.BOOLEAN_SWITCH:"color"===e?ta.COLOR_PICKER:"css_color"===e?ta.CSS_COLOR_INPUT:ta.STRING_INPUT}}class sa{label="";value="";iconUrl="";imageUrl="";description="";badge="";color="";disabled=!1}class na{variant=ta.STRING_INPUT;min=null;max=null;step=null;precision=null;sliderShowTicks=!1;sliderActiveColor="";sliderTrackColor="";sliderShowTooltip=!0;starCount=5;starAllowHalf=!1;starIcon="star";starCustomIconUrl="";starActiveColor="";starInactiveColor="";starSize=32;starShowValueLabel=!1;emojiScaleEmojis=[];emojiScaleSize=36;emojiScaleAnimateOnSelect=!0;dialSize=120;dialActiveColor="";dialShowValueInCenter=!0;dialStartAngle=135;progressTapHeight=20;progressTapGradientFrom="";progressTapGradientTo="";progressTapShowMarks=!1;chipTileSize=56;chipTileColumns=5;chipTileActiveColor="";options=[];textareaRows=3;textareaMaxLength=null;textareaShowCount=!1;tagMode="pill";cardGridColumns=2;cardGridImageRatio="4:3";cardGridShowDescription=!0;avatarListShowSubtitle=!0;avatarListSize=40;colorSwatchSize=32;colorSwatchShape="square";colorSwatchColumns=6;booleanTrueLabel="";booleanFalseLabel="";booleanTrueIconUrl="";booleanFalseIconUrl="";booleanTrueColor="";booleanFalseColor="";colorSwatchOptions=[];cssColorSwatchOptions=[];borderRadius=null;accentColor=""}class oa{fieldKey="";label="";description="";placeholder="";required=!0;dataType=ea.STRING;defaultValue=null;control=new na;boundVariableScope="";boundVariableKey=""}class ia{title="";description="";submitButtonText="";cancelButtonText="";showCancelButton=!0;blockInteraction=!0;closeOnOverlayClick=!1;synchronous=!0;fields=[];onSubmitSuccessActions=[];onCancelActions=[]}class ra{target=new Ee;min=0;max=1;integerOnly=!1}class ca{static RANDOM="random";static COOL="cool";static WARM="warm";static PASTEL="pastel";static VIVID="vivid";static GRAY="gray"}class la{target=new Ee;palette=ca.RANDOM;randomAlpha=!1;fixedAlpha=1}class da{static ISO="iso";static UNIX_MS="unix_ms";static UNIX_S="unix_s";static DATE_STRING="date_string";static TIME_STRING="time_string"}class _a{target=new Ee;outputType=da.ISO}class Ea{target=new Ee;candidates=[]}class ma{target=new Ee;candidates=[]}class Ta{target=new Ee;candidates=[]}class Ca{target=new Ee;candidates=[]}class pa{target=new Ee;candidates=[]}class Aa{target=new Ee;candidates=[]}const Oa={star:"M12 2.5l2.92 6.04 6.66.96-4.82 4.69 1.14 6.62L12 17.7l-5.9 3.11 1.14-6.62L2.42 9.5l6.66-.96L12 2.5z",heart:"M12 21s-7.5-4.6-9.5-9.4C1.1 8 3.5 4 7.5 4c2 0 3.6 1.1 4.5 2.6C12.9 5.1 14.5 4 16.5 4c4 0 6.4 4 5 7.6C19.5 16.4 12 21 12 21z",thumb:"M9 21h8.5a2 2 0 002-1.6l1.4-7A2 2 0 0019 10h-5l.7-3.6a2 2 0 00-3.5-1.7L7 10H4a1 1 0 00-1 1v9a1 1 0 001 1h5z",like:"M2 9h4v12H2V9zm6.5 12V11l4.6-7.4a1.5 1.5 0 012.7 1.1L14.5 9H20a2 2 0 012 2.3l-1.5 8a2 2 0 01-2 1.7H8.5z",fire:"M12 2.5s-1 3.5-3 5.5-3 3.8-3 6a6 6 0 1012 0c0-2.5-1.5-3.5-2.5-5 0 0-1 2-2.5 2 1-2.5 0-6.5-1-8.5z",crown:"M3 8l4 3 5-6 5 6 4-3-2 11H5L3 8zm2 13h14v2H5v-2z",flower:"M12 12m0 0a3 3 0 116 0 3 3 0 11-6 0zm-2-7a3 3 0 015 2.6 3 3 0 015-.4 3 3 0 01-.6 5 3 3 0 011 4.7 3 3 0 01-5 .3 3 3 0 01-5-2.6 3 3 0 01-5 .4 3 3 0 01.6-5 3 3 0 01-1-4.7 3 3 0 015-.3z"},ga=["star","heart","thumb","like","fire","crown","flower"];class Ia{static STAR="star";static HEART="heart";static THUMB="thumb";static LIKE="like";static FIRE="fire";static CROWN="crown";static FLOWER="flower"}const Sa="#FFB800",Na="#E0E0E0",La={thumbUp:"M9 21h8.5a2 2 0 002-1.6l1.4-7A2 2 0 0019 10h-5l.7-3.6a2 2 0 00-3.5-1.7L7 10H4a1 1 0 00-1 1v9a1 1 0 001 1h5z",thumbDown:"M15 3H6.5a2 2 0 00-2 1.6l-1.4 7A2 2 0 005 14h5l-.7 3.6a2 2 0 003.5 1.7L17 14h3a1 1 0 001-1V4a1 1 0 00-1-1h-5z",check:"M5 12.5l5 5 9-11",cross:"M5 5l14 14m0-14L5 19"};class Ra extends C{name="";introduce="";code="";adItemList=[]}class ua{type="image";name="";introduce="";imageSeconds=5;contentSrc="";chromaKeySettings=new _}class Pa{isAiEnabled=!0;welcomeMessage=new I}class Ma extends C{assetDataKey="";position=new a(0,0,0);rotation=new a(0,0,0);scale=new a(1,1,1);color=c.createColorRgb(20,20,20);name="";description="";snapshotSrc="";bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode=""}class Da{enabledShare=!0;enabledFullScreen=!0;enabledSceneBtn=!0;enabledFovBtn=!0;enabledD3ModeBtn=!0;enabledFloorPlanModeBtn=!0;enabledFloorSelectBtn=!0;enabledMeasurementBtn=!0;enabledFlowBtn=!1;enabledMinimap=!0;enabledStaffLogin=!1;enabledGuestLogin=!1;enabledHamburgerMenu=!1}class ya{enabledVrInfoTemplate=!1;vrInfoTemplateDataKey="";vrInfoTemplateItemValueList=[]}class ha{templateItemDataKey="";templateItemValue=""}class wa{static VIDEO="video";static IMAGE="image"}class va{static FILL="fill";static CONTAIN="contain";static COVER="cover";static NONE="none";static SCALE_DOWN="scale-down"}class ba{static PLAY="play";static TEXT="text"}class Va{coverImageSrc="";coverVideoSrc="";coverBackgroundColor=c.createColorRgba(255,255,255,1);coverBackgroundType=wa.IMAGE;coverContentFitType=va.CONTAIN;coverMaskColor=c.createColorRgba(255,255,255,.5);coverMaskBlur=10;coverTitle="";coverDescription="";enabledEnterVrButton=!1;enterVrButtonType=ba.PLAY;enterButtonBackgroundColor=c.createColorRgba(64,158,255,1);enterButtonForegroundColor=c.createColorRgba(255,255,255,1);enterButtonShadowColor=c.createColorRgba(64,158,255,1);textButtonContent="Enter";constructor(){this.coverBackgroundColor=c.createColorRgba(0,0,0,1),this.coverBackgroundType=wa.IMAGE,this.coverContentFitType=va.CONTAIN,this.coverMaskColor=c.createColorRgba(0,0,0,.5),this.coverMaskBlur=10,this.enabledEnterVrButton=!1,this.enterVrButtonType=ba.PLAY,this.enterButtonBackgroundColor=c.createColorRgba(64,158,255,1),this.enterButtonForegroundColor=c.createColorRgba(255,255,255,1),this.enterButtonShadowColor=c.createColorRgba(64,158,255,1),this.textButtonContent="Enter"}}class Ua{vrInitCompleteActionList=[];vrInitLocalVariableList=[];arInitCompleteActionList=[];arInitLocalVariableList=[];allInitCompleteActionList=[];allInitLocalVariableList=[];variablePreFillEnabled=!1;variablePreFillList=[];enterVrButtonTitle=new I;description=new I}class fa{variableKey="";defaultValue="";title="";hint="";required=!0}const Ba="#262626";class ka{static GROUP="group";static TEXT_ITEM="text_item";static IMAGE_ITEM="image_item";static VIDEO_ITEM="video_item";static WEBVIEW_ITEM="webview_item";static RICH_TEXT_ITEM="rich_text_item";static CANVAS_ITEM="canvas_item"}class Fa{static FLOATING="floating";static PUSHED="pushed"}class Ga extends C{nodeType=ka.TEXT_ITEM;name="";color=Ba;backgroundColor="";visible=!0}class xa extends Ga{title=new I}class Ha extends xa{constructor(){super(),this.nodeType=ka.TEXT_ITEM}icon="";actionList=[]}class Ya{url="";actionList=[]}class Xa extends xa{constructor(){super(),this.nodeType=ka.IMAGE_ITEM}description=new I;imageList=[];autoplay=!0;intervalMs=3e3}class Wa{url="";poster=""}class Ka extends xa{constructor(){super(),this.nodeType=ka.VIDEO_ITEM}description=new I;videoList=[];autoplay=!1;muted=!0;loop=!1}class Ja extends xa{constructor(){super(),this.nodeType=ka.WEBVIEW_ITEM}url="";height=240;allowFullscreen=!1}class za extends xa{constructor(){super(),this.nodeType=ka.GROUP}icon="";children=[]}function Qa(){return{type:"doc",content:[]}}class ja extends Ga{constructor(){super(),this.nodeType=ka.RICH_TEXT_ITEM}content={type:"doc",content:[]}}class Za extends xa{constructor(){super(),this.nodeType=ka.CANVAS_ITEM}designWidth=380;height=240;canvasBackgroundColor="rgba(0, 0, 0, 0.5)";componentList=[]}class qa{drawerTitle=new I;drawerDescription=new I;nodeList=[];pcLayoutMode=Fa.FLOATING;backgroundColor="";pcWidth=380}class $a{static IMAGE="image";static TEXT="text";static PROGRESS_BAR="progress-bar";static VIDEO="video";static BUTTON="button"}class es{static CONTAIN="contain";static COVER="cover";static FILL="fill";static SCALE_DOWN="scale-down";static NONE="none"}class ts{static LEFT="left";static CENTER="center";static RIGHT="right"}class as{static TOP="top";static MIDDLE="middle";static BOTTOM="bottom"}class ss{static HORIZONTAL="horizontal";static VERTICAL="vertical"}class ns{static CONTAIN="contain";static COVER="cover";static FILL="fill";static NONE="none"}class os{static LEFT="left";static RIGHT="right";static TOP="top"}class is extends C{type=$a.TEXT;name="";remark="";width=200;height=60;positionX=0;positionY=0;rotation=0;opacity=1;visible=!0;zIndex=1;backgroundColor="rgba(255,255,255,0)";hoverStyleEnabled=!1;hoverBackgroundColor="rgba(255,255,255,0)";hoverOpacity=1;radius=0;border="none";paddingX=6;paddingY=6;clickActionList=[];css={};script=""}class rs extends is{type=$a.IMAGE;imageSrc="";imageMode=es.FILL}class cs extends is{type=$a.TEXT;width=150;height=30;textContent="";textColor="rgba(255,255,255,1)";textSize=16;textVerticalAlign=as.MIDDLE;textAlign=ts.CENTER;textBold=!1;textItalic=!1}class ls extends is{type=$a.PROGRESS_BAR;width=150;height=30;progressBarColor="#4eb931";progressRange=100;progressBarDirection=ss.HORIZONTAL;progress="0"}class ds extends is{type=$a.VIDEO;width=240;height=135;videoSrc="";poster="";autoplay=!1;muted=!0;loop=!1;controls=!0;objectFit=ns.COVER}class _s extends is{type=$a.BUTTON;width=120;height=36;radius=999;paddingX=14;paddingY=8;backgroundColor="#1677ff";hoverBackgroundColor="#4096ff";textContent="";textColor="rgba(255,255,255,1)";textSize=14;textBold=!1;textItalic=!1;iconSrc="";iconPosition=os.LEFT}class Es{static buildVrContentData(e,t,a,s){const n=new As(e,t);return n.vrCoverSettings.coverTitle=a,n.vrCoverSettings.coverImageSrc=s,n}}class ms{isDirectToInside=!1;firstSweepPose=new i;enterFovImageSrc="";enterParams=""}class Ts{min=new a(0,0,0);max=new a(0,0,0);size=new a(0,0,0)}class Cs{title="";description=""}class ps{mapCode="";isSingleFrame=!1;frameCount=5;frameInterval=800;enableBlurCheck=!0;confidenceThreshold=.5;backgroundCorrectionInterval=30;arNearDistanceMax=35;arRefreshMoveThreshold=5}class As{version;vrDataKey="";mpModelId="";vrUnicode="";vrCoverSettings=new Va;vrPlayerUiSettings=new Da;hamburgerMenu=new qa;vrInfoTemplateSettings=new ya;arMultisetSettings=new ps;cameraEnterSettings=new ms;sweepMarkerList=[];componentMarkerList=[];worldSizeInfo=new Ts;introduceItemList=[];vrFovList=[];vrContentCardList=[];vrFloorList=[];audioCenter=new F;vrLightList=[];vrLayerList=[];vrViewList=[];sweepList=[];componentList=[];trimmerList=[];spaceFenceList=[];spaceFenceGroupList=[];abilityList=[];abilityGroupList=[];vrFlowList=[];vrStickerList=[];vrTargetList=[];vrTargetGroupList=[];vrObstacleList=[];vrObstacleGroupList=[];vrWormholeList=[];vrWormholeGroupList=[];vrAdChannelList=[];prepareSettings=new Ua;vrAiSettings=new Pa;aiAgentList=[];variableList=[];variableExpressionWatcherList=[];stateBindingsList=[];backgroundThreadList=[];cameraDollyPathList=[];monitorList=[];messageCardList=[];triggerList=[];unityNavigationModeList=[];unityNavigationParams=new u;xrVirtualFloorList=[];navigationAdConfigList=[];constructor(e,t){this.mpModelId=e,this.vrUnicode=t}}class Os extends C{name="";sequence=0;originalFloorPlanImageSrc="";mapSettings=new gs}class gs{floorId="";mapImageSrc="";widthScale=1;heightScale=1;horizontalOffset=0;verticalOffset=0;rotation=0}class Is{static COMPONENT_CREATED="component_created";static COMPONENT_SHOW="component_show";static COMPONENT_HIDE="component_hide";static CLICK="click";static MOUSE_ENTER="mouse_enter";static MOUSE_LEAVE="mouse_leave";static PLAY_START="play_start";static PLAY_FINISH="play_finish";static ENTER="enter";static LEAVE="leave";static PANEL_BUTTON_CLICK="panel_button_click";static PANEL_ANSWER_CORRECT="panel_answer_correct";static PANEL_ANSWER_WRONG="panel_answer_wrong";static VARIABLE_MODIFIED="variable_modified";static EXPRESSION_WATCHER_TRIGGERED="expression_watcher_triggered";static MONITOR_COMPONENT_CLICK="monitor_component_click";static STICKER_ACTIVATED="sticker_activated";static STICKER_DEACTIVATED="sticker_deactivated";static VR_STARTED="vr_started";static ALL_COMPONENTS_CREATED="all_components_created"}class Ss{static COMPONENT_TAG="component_tag";static COMPONENT_2D_TEXT="component_2d_text";static COMPONENT_2D_ADVERTISEMENT="component_2d_advertisement";static COMPONENT_2D_VIDEO="component_2d_video";static COMPONENT_2D_IMAGE="component_2d_image";static COMPONENT_2D_PANEL="component_2d_panel";static COMPONENT_3D_BOX="component_3d_box";static COMPONENT_3D_MODEL="component_3d_model";static LOGIC_VARIABLE="logic_variable";static LOGIC_EXPRESSION_WATCHER="logic_expression_watcher";static SPACE_FENCE="space_fence";static SPACE_FENCE_GROUP="space_fence_group";static MONITOR_COMPONENT="monitor_component";static STICKER="sticker";static SYSTEM="system"}const Ns={[Ss.COMPONENT_TAG]:[Is.CLICK,Is.COMPONENT_CREATED,Is.COMPONENT_SHOW,Is.COMPONENT_HIDE,Is.MOUSE_ENTER,Is.MOUSE_LEAVE],[Ss.COMPONENT_2D_TEXT]:[Is.CLICK,Is.COMPONENT_CREATED,Is.COMPONENT_SHOW,Is.COMPONENT_HIDE,Is.MOUSE_ENTER,Is.MOUSE_LEAVE],[Ss.COMPONENT_2D_ADVERTISEMENT]:[Is.CLICK,Is.COMPONENT_CREATED,Is.COMPONENT_SHOW,Is.COMPONENT_HIDE,Is.MOUSE_ENTER,Is.MOUSE_LEAVE],[Ss.COMPONENT_2D_VIDEO]:[Is.CLICK,Is.COMPONENT_CREATED,Is.COMPONENT_SHOW,Is.COMPONENT_HIDE,Is.MOUSE_ENTER,Is.MOUSE_LEAVE,Is.PLAY_START,Is.PLAY_FINISH],[Ss.COMPONENT_2D_IMAGE]:[Is.CLICK,Is.COMPONENT_CREATED,Is.COMPONENT_SHOW,Is.COMPONENT_HIDE,Is.MOUSE_ENTER,Is.MOUSE_LEAVE],[Ss.COMPONENT_2D_PANEL]:[Is.PANEL_BUTTON_CLICK,Is.PANEL_ANSWER_CORRECT,Is.PANEL_ANSWER_WRONG,Is.COMPONENT_CREATED,Is.COMPONENT_SHOW,Is.COMPONENT_HIDE],[Ss.COMPONENT_3D_BOX]:[Is.CLICK,Is.COMPONENT_CREATED,Is.COMPONENT_SHOW,Is.COMPONENT_HIDE,Is.MOUSE_ENTER,Is.MOUSE_LEAVE],[Ss.COMPONENT_3D_MODEL]:[Is.CLICK,Is.COMPONENT_CREATED,Is.COMPONENT_SHOW,Is.COMPONENT_HIDE,Is.MOUSE_ENTER,Is.MOUSE_LEAVE,Is.PLAY_START,Is.PLAY_FINISH],[Ss.LOGIC_VARIABLE]:[Is.VARIABLE_MODIFIED],[Ss.LOGIC_EXPRESSION_WATCHER]:[Is.EXPRESSION_WATCHER_TRIGGERED],[Ss.SPACE_FENCE]:[Is.ENTER,Is.LEAVE],[Ss.SPACE_FENCE_GROUP]:[Is.ENTER,Is.LEAVE],[Ss.MONITOR_COMPONENT]:[Is.MONITOR_COMPONENT_CLICK],[Ss.STICKER]:[Is.STICKER_ACTIVATED,Is.STICKER_DEACTIVATED],[Ss.SYSTEM]:[Is.VR_STARTED,Is.ALL_COMPONENTS_CREATED]};class Ls{source=Ss.COMPONENT_TAG;sourceId="";type=Is.ENTER;editorParams={}}class Rs extends C{createSourceType=Ss.COMPONENT_2D_IMAGE;createSourceId="";name="";signal=new Ls;actionList=[];triggerTimesLimit=-1;localVariableList=[];constructor(){super()}}class us{static DRAFT="draft";static PUBLISHED="published"}class Ps{id="";name="";description="";keywords=[];status=us.DRAFT;startStepId="";stepList=[];canvasData="";flagImageSrc="";flagImageSize=new s(1,1);flowScopeVariableList=[]}class Ms{static START="start";static FINISH="finish";static GENERAL="general";static CONDITION="condition"}class Ds{static NORMAL="normal";static BUTTONS_ONLY="buttons_only";static NONE="none"}class ys{id="";type=Ms.GENERAL;name="";title="";description="";showArriveDescription=!1;arriveDescription="";note="";flagImageSrc="";flagImageSize=new s(1,1);iconSrc="";stepBarStyle=Ds.NORMAL;showStepBarDelay=0;buttonList=[];enterActionList=[];positionSettings=new vs;arriveRadius=5;arriveActionList=[];triggerList=[];finishInjectTriggerList=[];startCardNextStepEndpointSettings=new Vs;conditionExpression="";conditionTrueEndpointSettings=new Vs;conditionFalseEndpointSettings=new Vs;enterActionCompleteEndpointSettings=new Vs;arriveActionCompleteEndpointSettings=new Vs;stepScopeVariableList=[]}class hs{actionList=[];onlyFirstArrive=!1;action}class ws{static NONE="none";static SWEEP="sweep";static COMPONENT="component";static FOV_LINK="fov_link";static VR_FOV="vr_fov"}class vs{type=ws.NONE;componentId="";fovLink="";fovLinkDataKey="";fovLinkSnapshotSrc="";sweepId="";rotationX=0;rotationY=0;enableDirectLocate=!1;enableNavigateAgain=!1;gotoPositionMethod=A.NAVIGATION_TO_MANUAL;vrFovId="";moveSpeed=0;pauseInterval=0}class bs{destroyTriggerOnLeaveCurrenStep=!0;trigger=new Rs;nextStepEndpointSettings=new Vs}class Vs{id="";enabled=!1;nextStepId="";lineColor=c.createColorByStr("#888888")}class Us extends C{name="";description="";isAvailableForAi=!0;src="";showInContentMenu=!0;cameraMode=n.INSIDE;cameraPose=new r}class fs extends C{name="";description="";keywords=[];visible=!0;children=[]}class Bs extends C{type;color=c.createColorRgb(255,255,255);enabled=!0;name="";intensity=1;floorIdList=[]}class ks extends Bs{type="ambient"}class Fs extends Bs{type="directional";position=new a(0,1,0);target=new a(0,0,0)}class Gs extends Bs{type="point";position=new a(0,1,0);distance=0;decay=1}class xs{static COMPONENT_MARKER="component_marker";static SWEEP_MARKER="sweep_marker"}class Hs extends C{name="";description="";keywords=[];color=c.createColorRgba(0,0,0,1);type=xs.COMPONENT_MARKER}class Ys{id="";name="";description="";keywords=[];color=c.createColorRgba(0,0,0,1);markerType=xs.COMPONENT_MARKER;markers=[]}class Xs{static M="m";static CM="cm";static MM="mm"}class Ws{static M2="m2";static CM2="cm2"}class Ks extends C{name="";description="";visible=!0;enabledArea=!0;pointList=[];appearanceThemeColor=c.createColorRgba(255,255,255,1);area=0;distanceUnit=Xs.M;areaUnit=Ws.M2}class Js{id="";position=new a(0,0,0);normal=new a(0,0,0);distance=0}class zs extends C{name="";introduce="";targetArrowImageSrc="";targetArrowImageSize=new s(1,1);targetArrowImageYOffset=.6;targetArrowImageYOffsetDynamic=.4;targetArrowAdPositionOffsetY=1.5;targetArrowAdSize=new s(1,.75);targetArrowShowAdDistance=20;targetArrowAdChannelId="";leadBotAdPositionOffset=new a(0,1.5,0);leadBotAdSize=new s(1,.75);leadBotAdChannelId=""}class Qs extends C{groupId="default";name="";description="";scale=new a(1,1,1);position=new a(0,0,0);rotation=new a(0,0,0);originalScale=new a(1,1,1);bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode=""}class js extends C{name="";enabled=!0;description=""}class Zs extends C{dataKey="";position=new a(0,0,0);rotation=new a(0,0,0);noteDataKey="";noteType="";noteIssueState=""}class qs extends C{groupId="default";name="";description="";scale=new a(1,1,1);position=new a(0,0,0);rotation=new a(0,0,0);bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode="";enterKeepSeconds=0;leaveKeepSeconds=0}class $s extends C{name="";description="";cubeFaceColor=c.createColorRgba(255,255,0,.3)}class en{static DISTANCE="distance";static VISIBLE="visible";static VISIBLE_AND_DISTANCE="visible_and_distance"}class tn extends C{position=new a(0,0,0);rotation=new a(0,0,0);stemLength=.2;color=c.createColorRgb(20,20,20);name="";snapshotSrc="";activateType=en.VISIBLE_AND_DISTANCE;activateDistance=5;activeNeedStaySeconds=0;inactiveNeedStaySeconds=0;bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode=""}class an extends C{no=1;name="";description="";isAvailableForAi=!0;isVirtual=!1;alignmentType=sn.ALIGNED;enabled=!0;disabledInMatterport=!1;floorId="";neighbors=[];placementType=nn.AUTO;position=new a(0,0,0);rotation=new a(0,0,0);pointerPosition=new a(0,0,0);markerList=[];keywords=[];panoramaData=new cn;contentCardList=[]}class sn{static ALIGNED="aligned";static UNALIGNED="unaligned"}class nn{static AUTO="auto";static MANUAL="manual";static UNPLACED="unplaced"}class on{static IMAGE="image";static VIDEO="video"}class rn{static NONE="none";static SAME_TO_INSIDE="same_to_inside"}class cn{default="original";sourceList=[];ballExternalViewMode=rn.NONE}class ln{id="";type=on.IMAGE;name="";description="";keywords=[];imageSrc="";videoSrc="";muted=!0;loop=!0;opacity=1;zoomLevel=1;rotationCorrection=new a(0,0,0);allowSeeSweep=!0;allowSeeComponents=!0}class dn{primaryColor=new d;secondaryColor=new d;maskColor=new d;barMaskColor=new d}class _n extends C{name="";position=new a(0,0,0);scale=new a(1,1,1);rotation=new a(0,0,0);enabledTrimSpace=!0;enabledTrimComponent=!1;discardContents=!0;activeInPanoMode=!0}class En extends C{startY=-99999;endY=99999;name="";floorPlanImageSrc="";floorCode="";floorPlanPointList=[new s(0,0),new s(0,0),new s(0,0)];vrSpacePointList=[new a(0,0,0),new a(0,0,0),new a(0,0,0)]}class mn extends C{name="";description="";type=Tn.BASIC;bindLayerIdList=[]}class Tn{static GENERAL="general";static BASIC="basic"}class Cn extends C{groupId="default";position=new a(0,0,0);rotation=new a(0,0,0);stemLength=.2;color=c.createColorRgb(205,133,63);name="";title=new I;bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode=""}class pn extends C{name="";enabled=!0;description=""}class An extends C{groupId="default";position=new a(0,0,0);rotation=new a(0,0,0);stemLength=.2;color=c.createColorRgb(34,139,34);name="";code="";title=new I;description=new I;showToUser=!0;importable=!1;destinationToAnotherTarget=!1;destinationTargetId="";bestViewingSweepId="";bestViewingRotation=new s(0,0);bestViewingMode=""}class On extends C{name="";enabled=!0;description="";useNavigationAdConfigId=""}class gn{static IMAGE="image";static TEXT="text";static PROGRESS_BAR="progress-bar";static VIDEO="video";static BUTTON="button"}class In{static CONTAIN="contain";static COVER="cover";static FILL="fill";static SCALE_DOWN="scale-down";static NONE="none"}class Sn{static LEFT="left";static CENTER="center";static RIGHT="right"}class Nn{static TOP="top";static MIDDLE="middle";static BOTTOM="bottom"}class Ln{static HORIZONTAL="horizontal";static VERTICAL="vertical"}class Rn{static CONTAIN="contain";static COVER="cover";static FILL="fill";static NONE="none"}class un{static LEFT="left";static RIGHT="right";static TOP="top"}class Pn extends C{type=gn.TEXT;name="";remark="";width=200;height=150;rotation=0;opacity=1;backgroundColor="rgba(255,255,255,0)";hoverStyleEnabled=!1;hoverBackgroundColor="rgba(255,255,255,0)";hoverOpacity=1;visible=!0;zIndex=1;radius=0;border="none";paddingX=6;paddingY=6;clickActionList=[];css={};script=""}class Mn extends Pn{type=gn.IMAGE;imageSrc="";imageMode=In.FILL}class Dn extends Pn{type=gn.TEXT;width=150;height=30;positionX=0;positionY=0;textContent="";textColor="rgba(255,255,255,1)";textSize=16;textVerticalAlign=Nn.MIDDLE;textAlign=Sn.CENTER;textBold=!1;textItalic=!1}class yn extends Pn{type=gn.PROGRESS_BAR;width=150;height=30;progressBarColor="#4eb931";progressRange=100;progressBarDirection=Ln.HORIZONTAL;progress="0"}class hn extends Pn{type=gn.VIDEO;width=240;height=135;videoSrc="";poster="";autoplay=!1;muted=!0;loop=!1;controls=!0;objectFit=Rn.COVER}class wn extends Pn{type=gn.BUTTON;width=120;height=36;radius=999;paddingX=14;paddingY=8;backgroundColor="#1677ff";hoverBackgroundColor="#4096ff";textContent="";textColor="rgba(255,255,255,1)";textSize=14;textBold=!1;textItalic=!1;iconSrc="";iconPosition=un.LEFT}class vn extends C{name="";remark="";title="";description="";icon="";size=new s(360,270);defaultEnabled=!0;backgroundColor=c.createColorRgba(0,0,0,.5);componentList=[]}class bn extends C{name="";remark="";iconSrc="";title="";content="";buttonList=[]}class Vn extends C{name="";remark="";autoExecuteOnBoot=!1;executeCount=0;actionList=[];interval=1e3;localVariableList=[]}class Un{componentId="";description=""}class fn{targetId="";description=""}class Bn{variableKey="";description=""}class kn{stickerId="";canBeActivated=!0;description=""}class Fn{spaceFenceId="";canBeActivated=!0;description=""}class Gn{spaceFenceGroupId="";canBeActivated=!0;description=""}class xn{backgroundThreadId="";description=""}class Hn{cameraDollyPathId="";description=""}class Yn{abilityId="";description=""}class Xn{contentCardId="";description=""}class Wn{vrFovId="";description=""}class Kn{cloudFormDataKey="";description="";autoPromptToFill=!1}class Jn{knowledgeBaseDataKey="";description=""}class zn{analyticsEventDataKey="";description=""}class Qn{rolePrompt="";tonePrompt="";taskPrompt="";abilityPrompt="";limitPrompt="";behaviorRulePrompt="";greetingPrompt="";warmUpPrompt=""}class jn{static FAST="fast";static HARD="hard";static EXPERT="expert"}class Zn extends C{name="";description="";promptContent=""}class qn extends C{name="";autoActivate=!1;enableVoiceOutput=!1;voiceOutputComponentId="";enableVoiceInput=!1;remark="";roleName="";rolePromptSettings=new Qn;skillPromptList=[];effortLevel=jn.FAST;useComponentList=[];useTargetList=[];useVariableList=[];useStickerList=[];useSpaceFenceList=[];useSpaceFenceGroupList=[];useBackgroundThreadList=[];useCameraDollyPathList=[];useAbilityList=[];useKnowledgeBaseList=[];useFovList=[];useContentCardList=[];useCloudFormList=[];useAnalyticsEventList=[]}class $n{sweepId="";needCustomRotation=!1;customRotationX=0;customRotationY=0;moveTime=1e3;stayTime=500}class eo extends C{name="";nodeList=[];destinationType="custom";vrFovId="";fovLinkDataKey="";fovLinkSweepId="";fovLinkCameraRotationX=0;fovLinkCameraRotationY=0;fovLinkSnapshotSrc="";destinationSweepId="";destinationRotationX=0;destinationRotationY=0;destinationSnapshotSrc="";finalMoveSpeed=700;disableVrControl=!0;runningPromptText=""}class to extends C{name="";remark=""}class ao extends C{abilityGroupId="";autoExecuteOnBoot=!1;name="";remark="";description="";contextVariableList=[];activeActionList=[];activeActionListLocalVariableList=[];keeping=!1;triggerList=[];stopActionList=[];stopActionListLocalVariableList=[]}class so extends Z{type=W.TYPE_2D_ADVERTISEMENT;adChannelId=""}class no extends Z{type=W.TYPE_2D_IMAGE;sourceList=[];autoChangeInterval=0;currentImageIndex=0}class oo{id="";src="";name="";description="";aspectRatio=1;chromaKeySettings=new _}class io{static MENU="menu";static ANSWERING="answering";static ENUM_MODIFIER="enum-modifier"}class ro extends Z{type=W.TYPE_2D_PANEL;sceneDataList=[];defaultSceneId=""}class co{id="";mode=io.MENU;name="";description="";buttonDataList=[];textDataList=[];imageDataList=[];answeringModeSettings=new lo;enumModifierModeSettings=new _o;style=new go;snapshotImageSrc=""}class lo{confirmButton=new Ao;correctButtonIdList=[]}class _o{variableKey=""}class Eo{static TEXT="text";static IMAGE="image";static BUTTON="button"}class mo{id="";name="";type=Eo.TEXT;style=new Io}class To{static TEXT="text";static IMAGE="image";static TEXT_LEFT_IMAGE_RIGHT="text_left_image_right";static IMAGE_LEFT_TEXT_RIGHT="image_left_text_right";static IMAGE_TOP_TEXT_BOTTOM="image_top_text_bottom";static TEXT_TOP_IMAGE_BOTTOM="text_top_image_bottom"}class Co extends mo{type=Eo.IMAGE;src="";imageMode="fill"}class po extends mo{type=Eo.TEXT;richText=""}class Ao extends mo{type=Eo.BUTTON;name="";enumOptionValue="";enabled=!0;buttonType=To.TEXT;buttonText="";buttonImageSrc="";buttonImageWidth=40;buttonImageHeight=40;buttonImageTextSpacing=10;hoverMaskColor=c.createColorRgba(255,255,255,.5);hoverBorderColor=c.createColorRgba(255,255,255,1);hoverBorderWidth=1;selectedMaskColor=c.createColorRgba(0,255,0,.2);selectedBorderColor=c.createColorRgba(50,205,50,.7);selectedBorderWidth=3;disabledMaskColor=c.createColorRgba(0,0,0,.65);disabledBorderColor=c.createColorRgba(100,100,100,.5);disabledBorderWidth=2;disabledClickTip=new I}class Oo{width=640;height=480;borderRadius=10;opacity=1;backgroundColor=c.createColorRgba(0,0,0,0);borderColor=c.createColorRgba(0,0,0,1);borderWidth=0;borderStyle="solid"}class go extends Oo{paddingX=10;paddingY=10}class Io extends Oo{x=0;y=0;zIndex=10}class So{static LEFT="left";static CENTER="center";static RIGHT="right"}class No{static TOP="top";static CENTER="center";static BOTTOM="bottom"}class Lo{static BASIC="basic";static MARQUEE="marquee"}class Ro extends Z{type=W.TYPE_2D_TEXT;sourceList=[];mode=Lo.BASIC;backgroundColor=c.createColorRgba(0,0,0,.2);fontFamily="";textColor=c.createColorRgba(255,255,255,1);paddingX=8;paddingY=4;borderRadius=5;fontSize=20;horizontalAlign="left";verticalAlign="top";currentSourceIndex=0;basicModeSettings=new Po;marqueeModeSettings=new Mo}class uo{id="";textContent="2D Text";description=""}class Po{changeInterval=0}class Mo{autoChange=!0;speed=50;interval=1;width=15}class Do extends Z{type=W.TYPE_2D_VIDEO;sourceList=[];autoPlay=!1;defaultLoopMode=L.NO_LOOP;defaultMute=!0;showControl=!0;showMute=!0;customControlButtonSize=!1;controlButtonDiameter=.3;additionalControlButtonDiameter=.1;currentSourceIndex=0}class yo{id="";videoSrc="";name="";description="";coverSrc="";aspectRatio=1;duration=0;chromaKeySettings=new _;playbackRate=1}class ho extends ae{type=W.TYPE_3D_BOX;faceColor=c.createColorRgba(0,255,0,.2);borderColor=c.createColorRgba(0,255,0,.5);hoverFaceColor=c.createColorRgba(0,255,0,.5);hoverBorderColor=c.createColorRgba(0,255,0,.8);borderWidth=.005;hoverBorderSettings=new O}class wo extends ae{type=W.TYPE_3D_MODEL;modelFormat="glb";modelSrc="";materialSrc="";coverSrc="";originalSize=new a(-1,-1,-1);innerScale=new a(-1,-1,-1);animationList=[];animationClipList=[];ignoreLighting=!1}class vo{id="";name="";alias="";duration=0}class bo{id="";animationId="";name="";description="";speed=1;timeRange=[0,1];loop=!1;stayAtLastFrame=!1}class Vo{static NONE="none";static TOP="top";static BOTTOM="bottom"}class Uo extends J{type=W.TYPE_TAG;tagNonPerspective=!1;enabledDrag=!1;size=.2;enabledBackground=!0;backgroundColor=c.createColorRgb(90,156,248);enabledCustomIcon=!1;iconSrc="";enabledIconColorOverride=!0;overrideIconColor=c.createColorRgb(255,255,255);enabledStem=!0;stemColor=c.createColorRgb(255,255,255);stemLength=.5;stemVector=new a(0,1,0);bindContentCardId="";isHoverShowContentCardBubble=!0;isClickShowContentCard=!0;clickShowContentCardStyle=U.BUBBLE;triggerButtonTitle="";tipTextLocation=Vo.NONE;tipTextContent="";tipTextColor=c.createColorRgba(255,255,255,1);tipTextBackgroundColor=c.createColorRgba(0,0,0,.4);tipTextFontSize=18;tipTextNonPerspective=!1}class fo{static NORMAL="NORMAL";static EDIT_SCENE="EDIT_SCENE";static EDIT_COVER="EDIT_COVER"}const Bo={uninitialized:1,waiting:2,loading:3,starting:4,playing:5,error:6};class ko{static UNINITIALIZED="uninitialized";static WAITING="waiting";static LOADING="loading";static STARTING="starting";static PLAYING="playing";static ERROR="error"}class Fo{status=ko.UNINITIALIZED;progress=0;get statusNum(){return Bo[this.status]}}class Go{type="";data={};constructor(e,t){this.type=e,this.data=t}}class xo{static PLAYER_START="vrtalk_cmd_player_start";static PLAYER_MODE_UPDATE="vrtalk_cmd_player_mode_update";static COVER_SETTINGS_UPDATE="vrtalk_cmd_cover_settings_update";static UI_SETTINGS_UPDATE="vrtalk_cmd_ui_settings_update";static INFO_TEMPLATE_SETTINGS_UPDATE="vrtalk_cmd_info_template_settings_update";static COMPONENT_CREATE="vrtalk_cmd_component_create";static COMPONENT_UPDATE="vrtalk_cmd_component_update";static COMPONENT_DELETE="vrtalk_cmd_component_delete";static COMPONENT_FOLLOW_MOUSE="vrtalk_cmd_component_follow_mouse";static COMPONENT_CONTROLLER_MODIFY="vrtalk_cmd_component_controller";static COMPONENT_PLAY_TRANSITION_ANIMATION="vrtalk_cmd_component_play_transition_animation";static COMPONENT_STOP_TRANSITION_ANIMATION="vrtalk_cmd_component_stop_transition_animation";static COMPONENT_3D_MODEL_PLAY_ANIMATION_CLIP="vrtalk_cmd_component_3d_model_play_animation_clip";static COMPONENT_3D_MODEL_STOP_ANIMATION_CLIP="vrtalk_cmd_component_3d_model_stop_animation_clip";static COMPONENT_2D_TEXT_AUTO_FIT="vrtalk_cmd_component_2d_text_auto_fit";static FOV_ENTER_SHOT_MODE="vrtalk_cmd_fov_enter_shot_mode";static FOV_EXIT_SHOT_MODE="vrtalk_cmd_fov_exit_shot_mode";static FOV_UPDATE="vrtalk_cmd_fov_update";static FOV_DELETE="vrtalk_cmd_fov_delete";static LAYER_UPDATE="vrtalk_cmd_layer_update";static LAYER_DELETE="vrtalk_cmd_layer_delete";static LAYER_VISIBLE="vrtalk_cmd_layer_visible";static SWEEP_UPDATE_ALL="vrtalk_cmd_sweep_update_all";static SWEEP_UPDATE="vrtalk_cmd_sweep_update";static SWEEP_DELETE_VIRTUAL="vrtalk_cmd_sweep_delete_virtual";static SWEEP_UPDATE_RENDER_FLAG_VISIBLE="vrtalk_cmd_sweep_update_render_flag_visible";static LIGHT_CREATE="vrtalk_cmd_light_create";static LIGHT_UPDATE="vrtalk_cmd_light_update";static LIGHT_DELETE="vrtalk_cmd_light_delete";static TRIMMER_CREATE="vrtalk_cmd_trimmer_create";static TRIMMER_UPDATE="vrtalk_cmd_trimmer_update";static TRIMMER_DELETE="vrtalk_cmd_trimmer_delete";static TRIMMER_CONTROLLER_MODIFY="vrtalk_cmd_trimmer_controller";static TRIMMER_EDITING_STATE_UPDATE="vrtalk_cmd_trimmer_editing_state_update";static STICKER_CREATE="vrtalk_cmd_sticker_create";static STICKER_UPDATE="vrtalk_cmd_sticker_update";static STICKER_DELETE="vrtalk_cmd_sticker_delete";static STICKER_CONTROLLER_MODIFY="vrtalk_cmd_sticker_controller";static STICKER_EDITING_STATE_UPDATE="vrtalk_cmd_sticker_editing_state_update";static TARGET_CREATE="vrtalk_cmd_target_create";static TARGET_UPDATE="vrtalk_cmd_target_update";static TARGET_DELETE="vrtalk_cmd_target_delete";static TARGET_CONTROLLER_MODIFY="vrtalk_cmd_target_controller";static TARGET_EDITING_STATE_UPDATE="vrtalk_cmd_target_editing_state_update";static TARGET_GROUP_VISIBLE_UPDATE="vrtalk_cmd_target_group_visible_update";static OBSTACLE_CREATE="vrtalk_cmd_obstacle_create";static OBSTACLE_UPDATE="vrtalk_cmd_obstacle_update";static OBSTACLE_DELETE="vrtalk_cmd_obstacle_delete";static OBSTACLE_CONTROLLER_MODIFY="vrtalk_cmd_obstacle_controller";static OBSTACLE_EDITING_STATE_UPDATE="vrtalk_cmd_obstacle_editing_state_update";static OBSTACLE_GROUP_VISIBLE_UPDATE="vrtalk_cmd_obstacle_group_visible_update";static SPACE_FENCE_CREATE="vrtalk_cmd_space_fence_create";static SPACE_FENCE_UPDATE="vrtalk_cmd_space_fence_update";static SPACE_FENCE_DELETE="vrtalk_cmd_space_fence_delete";static SPACE_FENCE_CONTROLLER_MODIFY="vrtalk_cmd_space_fence_controller";static SPACE_FENCE_EDITING_STATE_UPDATE="vrtalk_cmd_space_fence_editing_state_update";static SPACE_FENCE_GROUP_VISIBLE_UPDATE="vrtalk_cmd_space_fence_group_visible_update";static SPACE_FENCE_GROUP_COLOR_UPDATE="vrtalk_cmd_space_fence_group_color_update";static WORMHOLE_CREATE="vrtalk_cmd_wormhole_create";static WORMHOLE_UPDATE="vrtalk_cmd_wormhole_update";static WORMHOLE_DELETE="vrtalk_cmd_wormhole_delete";static WORMHOLE_CONTROLLER_MODIFY="vrtalk_cmd_wormhole_controller";static WORMHOLE_EDITING_STATE_UPDATE="vrtalk_cmd_wormhole_editing_state_update";static WORMHOLE_GROUP_VISIBLE_UPDATE="vrtalk_cmd_wormhole_group_visible_update";static ASSET_LABEL_CREATE="vrtalk_cmd_asset_label_create";static ASSET_LABEL_UPDATE="vrtalk_cmd_asset_label_update";static ASSET_LABEL_DELETE="vrtalk_cmd_asset_label_delete";static ASSET_LABEL_CONTROLLER_MODIFY="vrtalk_cmd_asset_label_controller";static ASSET_LABEL_EDITING_STATE_UPDATE="vrtalk_cmd_asset_label_editing_state_update";static FLOOR_UPDATE="vrtalk_cmd_floor_update";static INFORMATION_CONTENT_CARD_UPDATE="vrtalk_cmd_information_content_card_update";static INFORMATION_CONTENT_CARD_DELETE="vrtalk_cmd_information_content_card_delete";static MARKER_UPDATE="vrtalk_cmd_marker_update";static MARKER_DELETE="vrtalk_cmd_marker_delete";static CAMERA_MOVE_TO="vrtalk_cmd_camera_move_to";static CAMERA_MOVE_TO_INSIDE="vrtalk_cmd_camera_move_to_inside";static CAMERA_MOVE_TO_VR_FOV="vrtalk_cmd_camera_move_to_vr_fov";static CAMERA_MOVE_TO_NEAR_COMPONENT="vrtalk_cmd_camera_move_to_near_component";static CAMERA_MOVE_TO_WATCH_POSITION="vrtalk_cmd_camera_move_to_watch_position";static RENDERER_TAKE_SCREENSHOT="vrtalk_cmd_renderer_take_screenshot";static RENDERER_GET_PANORAMA_IMAGE="vrtalk_cmd_renderer_get_panorama_image";static NAVIGATION_REQUEST="vrtalk_cmd_navigation_request";static NAVIGATION_START="vrtalk_cmd_navigation_start";static NAVIGATION_CANCEL="vrtalk_cmd_navigation_cancel";static AUDIO_UPDATE="vrtalk_cmd_audio_update";static AUDIO_DELETE="vrtalk_cmd_audio_delete";static AUDIO_LIST_UPDATE="vrtalk_cmd_audio_list_update";static AUDIO_LIST_DELETE="vrtalk_cmd_audio_list_delete";static AUDIO_CENTER_PLAYER_SHOW_PLAY_CONTROL_UPDATE="vrtalk_cmd_audio_center_player_show_play_control_update";static AUDIO_CENTER_PLAYER_SHOW_VOLUME_CONTROL_UPDATE="vrtalk_cmd_audio_center_player_show_volume_control_update";static AUDIO_CENTER_PLAYER_VOLUME_UPDATE="vrtalk_cmd_audio_center_player_volume_update";static MONITOR_LIST_UPDATE="vrtalk_cmd_monitor_list_update";static DOLLY_PATH_CAPTURE_DESTINATION="vrtalk_cmd_dolly_path_capture_destination";static DOLLY_PATH_PREVIEW="vrtalk_cmd_dolly_path_preview";static DOLLY_PATH_STOP_PREVIEW="vrtalk_cmd_dolly_path_stop_preview";static MESSAGE_CARD_PREVIEW="vrtalk_cmd_message_card_preview"}class Ho{onStart(e){vi.registerCommandListener(xo.PLAYER_START,(t=>{e(t.data.vrContentData,t.data.isForceIgnoreEnterBtn)}))}onModeUpdate(e){vi.registerCommandListener(xo.PLAYER_MODE_UPDATE,(t=>{e(t.data)}))}}class Yo{onCoverSettingsUpdate(e){vi.registerCommandListener(xo.COVER_SETTINGS_UPDATE,(t=>{e(t.data)}))}}class Xo{onUiSettingsUpdate(e){vi.registerCommandListener(xo.UI_SETTINGS_UPDATE,(t=>{e(t.data)}))}}class Wo{onInfoTemplateSettingsUpdate(e){vi.registerCommandListener(xo.INFO_TEMPLATE_SETTINGS_UPDATE,(t=>{e(t.data)}))}}class Ko{onContentCardUpdate(e){vi.registerCommandListener(xo.INFORMATION_CONTENT_CARD_UPDATE,(t=>{e(t.data)}))}onContentCardDelete(e){vi.registerCommandListener(xo.INFORMATION_CONTENT_CARD_DELETE,(t=>{e(t.data)}))}}class Jo{onCreate(e){vi.registerCommandListener(xo.COMPONENT_CREATE,(t=>{e(t.data)}))}onUpdate(e){vi.registerCommandListener(xo.COMPONENT_UPDATE,(t=>{e(t.data)}))}onDelete(e){vi.registerCommandListener(xo.COMPONENT_DELETE,(t=>{e(t.data)}))}onFollowMouse(e){vi.registerCommandListener(xo.COMPONENT_FOLLOW_MOUSE,(t=>{e(t.data)}))}onControllerModify(e){vi.registerCommandListener(xo.COMPONENT_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.componentId)}))}onPlayTransitionAnimation(e){vi.registerCommandListener(xo.COMPONENT_PLAY_TRANSITION_ANIMATION,(t=>{e(t.data.componentId,t.data.animationId)}))}onStopTransitionAnimation(e){vi.registerCommandListener(xo.COMPONENT_STOP_TRANSITION_ANIMATION,(t=>{e(t.data.componentId)}))}on3dModelPlayAnimationClip(e){vi.registerCommandListener(xo.COMPONENT_3D_MODEL_PLAY_ANIMATION_CLIP,(t=>{e(t.data.modelComponentId,t.data.animationClipId)}))}on3dModelStopAnimationClip(e){vi.registerCommandListener(xo.COMPONENT_3D_MODEL_STOP_ANIMATION_CLIP,(t=>{e(t.data.modelComponentId)}))}on2dTextAutoFit(e){vi.registerCommandListener(xo.COMPONENT_2D_TEXT_AUTO_FIT,(t=>{e(t.data)}))}}class zo{onEnterFovShotMode(e){vi.registerCommandListener(xo.FOV_ENTER_SHOT_MODE,(t=>{e(t.data)}))}onExitFovShotMode(e){vi.registerCommandListener(xo.FOV_EXIT_SHOT_MODE,(t=>{e()}))}onUpdate(e){vi.registerCommandListener(xo.FOV_UPDATE,(t=>{e(t.data)}))}onDelete(e){vi.registerCommandListener(xo.FOV_DELETE,(t=>{e(t.data)}))}}class Qo{onUpdate(e){vi.registerCommandListener(xo.LAYER_UPDATE,(t=>{e(t.data)}))}onDelete(e){vi.registerCommandListener(xo.LAYER_DELETE,(t=>{e(t.data.layerId,t.data.deleteComponents)}))}onVisible(e){vi.registerCommandListener(xo.LAYER_VISIBLE,(t=>{e(t.data.layerId,t.data.visible)}))}}class jo{onCreate(e){vi.registerCommandListener(xo.LIGHT_CREATE,(t=>{e(t.data)}))}onUpdate(e){vi.registerCommandListener(xo.LIGHT_UPDATE,(t=>{e(t.data)}))}onDelete(e){vi.registerCommandListener(xo.LIGHT_DELETE,(t=>{e(t.data)}))}}class Zo{onCreate(e){vi.registerCommandListener(xo.TRIMMER_CREATE,(t=>{e(t.data)}))}onUpdate(e){vi.registerCommandListener(xo.TRIMMER_UPDATE,(t=>{e(t.data)}))}onDelete(e){vi.registerCommandListener(xo.TRIMMER_DELETE,(t=>{e(t.data)}))}onControllerModify(e){vi.registerCommandListener(xo.TRIMMER_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.trimmerId)}))}onEditingStateUpdate(e){vi.registerCommandListener(xo.TRIMMER_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}}class qo{onCreate(e){vi.registerCommandListener(xo.STICKER_CREATE,(t=>{e(t.data)}))}onUpdate(e){vi.registerCommandListener(xo.STICKER_UPDATE,(t=>{e(t.data)}))}onDelete(e){vi.registerCommandListener(xo.STICKER_DELETE,(t=>{e(t.data)}))}onControllerModify(e){vi.registerCommandListener(xo.STICKER_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.stickerId)}))}onEditingStateUpdate(e){vi.registerCommandListener(xo.STICKER_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}}class $o{onUpdate(e){vi.registerCommandListener(xo.FLOOR_UPDATE,(t=>{e(t.data)}))}}class ei{onMoveTo(e){vi.registerCommandListener(xo.CAMERA_MOVE_TO,(t=>{e(t.data.transition,t.data.cameraPose)}))}onMoveToInside(e){vi.registerCommandListener(xo.CAMERA_MOVE_TO_INSIDE,(t=>{e(t.data.transition,t.data.transitionTime,t.data.cameraPose)}))}onMoveToVrFov(e){vi.registerCommandListener(xo.CAMERA_MOVE_TO_VR_FOV,(t=>{e(t.data.transition,t.data.transitionTime,t.data.fovId)}))}onMoveToNearComponent(e){vi.registerCommandListener(xo.CAMERA_MOVE_TO_NEAR_COMPONENT,(t=>{e(t.data.transition,t.data.transitionTime,t.data.componentId)}))}onMoveToWatchPosition(e){vi.registerCommandListener(xo.CAMERA_MOVE_TO_WATCH_POSITION,(t=>{e(t.data.transition,t.data.transitionTime,t.data.position)}))}}class ti{onTakeScreen(e){vi.registerCommandListener(xo.RENDERER_TAKE_SCREENSHOT,(t=>{e(t.data.resolution,t.data.visibility)}))}onGetPanoramaImage(e){vi.registerCommandListener(xo.RENDERER_GET_PANORAMA_IMAGE,(()=>{e()}))}}class ai{onMarkerUpdate(e){vi.registerCommandListener(xo.MARKER_UPDATE,(t=>{e(t.data)}))}onDelete(e){vi.registerCommandListener(xo.MARKER_DELETE,(t=>{e(t.data)}))}}class si{onNavigationRequest(e){vi.registerCommandListener(xo.NAVIGATION_REQUEST,(t=>{e(t.data)}))}onNavigationStart(e){vi.registerCommandListener(xo.NAVIGATION_START,(t=>{e(t.data)}))}onNavigationCancel(e){vi.registerCommandListener(xo.NAVIGATION_CANCEL,(t=>{e()}))}}class ni{onCreate(e){vi.registerCommandListener(xo.OBSTACLE_CREATE,(t=>{e(t.data)}))}onUpdate(e){vi.registerCommandListener(xo.OBSTACLE_UPDATE,(t=>{e(t.data)}))}onDelete(e){vi.registerCommandListener(xo.OBSTACLE_DELETE,(t=>{e(t.data)}))}onControllerModify(e){vi.registerCommandListener(xo.OBSTACLE_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.obstacleId)}))}onEditingStateUpdate(e){vi.registerCommandListener(xo.OBSTACLE_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}onGroupVisibleUpdate(e){vi.registerCommandListener(xo.OBSTACLE_GROUP_VISIBLE_UPDATE,(t=>{e(t.data.groupId,t.data.visible)}))}}class oi{onAudioListUpdate(e){vi.registerCommandListener(xo.AUDIO_LIST_UPDATE,(t=>{e(t.data)}))}onAudioListDelete(e){vi.registerCommandListener(xo.AUDIO_LIST_DELETE,(t=>{e(t.data)}))}onAudioUpdate(e){vi.registerCommandListener(xo.AUDIO_UPDATE,(t=>{e(t.data)}))}onAudioDelete(e){vi.registerCommandListener(xo.AUDIO_DELETE,(t=>{e(t.data)}))}onAudioCenterPlayerShowPlayControlUpdate(e){vi.registerCommandListener(xo.AUDIO_CENTER_PLAYER_SHOW_PLAY_CONTROL_UPDATE,(t=>{e(t.data)}))}onAudioCenterPlayerShowVolumeControlUpdate(e){vi.registerCommandListener(xo.AUDIO_CENTER_PLAYER_SHOW_VOLUME_CONTROL_UPDATE,(t=>{e(t.data)}))}onAudioCenterPlayerVolumeUpdate(e){vi.registerCommandListener(xo.AUDIO_CENTER_PLAYER_VOLUME_UPDATE,(t=>{e(t.data)}))}}class ii{onCreate(e){vi.registerCommandListener(xo.ASSET_LABEL_CREATE,(t=>{e(t.data)}))}onUpdate(e){vi.registerCommandListener(xo.ASSET_LABEL_UPDATE,(t=>{e(t.data)}))}onDelete(e){vi.registerCommandListener(xo.ASSET_LABEL_DELETE,(t=>{e(t.data)}))}onControllerModify(e){vi.registerCommandListener(xo.ASSET_LABEL_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.assetLabelId)}))}onEditingStateUpdate(e){vi.registerCommandListener(xo.ASSET_LABEL_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}}class ri{onCreate(e){vi.registerCommandListener(xo.TARGET_CREATE,(t=>{e(t.data)}))}onUpdate(e){vi.registerCommandListener(xo.TARGET_UPDATE,(t=>{e(t.data)}))}onDelete(e){vi.registerCommandListener(xo.TARGET_DELETE,(t=>{e(t.data)}))}onControllerModify(e){vi.registerCommandListener(xo.TARGET_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.targetId)}))}onEditingStateUpdate(e){vi.registerCommandListener(xo.TARGET_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}onGroupVisibleUpdate(e){vi.registerCommandListener(xo.TARGET_GROUP_VISIBLE_UPDATE,(t=>{e(t.data.groupId,t.data.visible)}))}}class ci{onCreate(e){vi.registerCommandListener(xo.WORMHOLE_CREATE,(t=>{e(t.data)}))}onUpdate(e){vi.registerCommandListener(xo.WORMHOLE_UPDATE,(t=>{e(t.data)}))}onDelete(e){vi.registerCommandListener(xo.WORMHOLE_DELETE,(t=>{e(t.data)}))}onControllerModify(e){vi.registerCommandListener(xo.WORMHOLE_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.wormholeId)}))}onEditingStateUpdate(e){vi.registerCommandListener(xo.WORMHOLE_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}onGroupVisibleUpdate(e){vi.registerCommandListener(xo.WORMHOLE_GROUP_VISIBLE_UPDATE,(t=>{e(t.data.groupId,t.data.visible)}))}}class li{onCreate(e){vi.registerCommandListener(xo.SPACE_FENCE_CREATE,(t=>{e(t.data)}))}onUpdate(e){vi.registerCommandListener(xo.SPACE_FENCE_UPDATE,(t=>{e(t.data)}))}onDelete(e){vi.registerCommandListener(xo.SPACE_FENCE_DELETE,(t=>{e(t.data)}))}onControllerModify(e){vi.registerCommandListener(xo.SPACE_FENCE_CONTROLLER_MODIFY,(t=>{e(t.data.controllerType,t.data.spaceFenceId)}))}onEditingStateUpdate(e){vi.registerCommandListener(xo.SPACE_FENCE_EDITING_STATE_UPDATE,(t=>{e(t.data)}))}onGroupVisibleUpdate(e){vi.registerCommandListener(xo.SPACE_FENCE_GROUP_VISIBLE_UPDATE,(t=>{e(t.data.groupId,t.data.visible)}))}onGroupColorUpdate(e){vi.registerCommandListener(xo.SPACE_FENCE_GROUP_COLOR_UPDATE,(t=>{e(t.data.groupId,t.data.cubeFaceColor)}))}}class di{onMonitorListUpdate(e){vi.registerCommandListener(xo.MONITOR_LIST_UPDATE,(t=>{e(t.data)}))}}class _i{onMessageCardPreview(e){vi.registerCommandListener(xo.MESSAGE_CARD_PREVIEW,(t=>{e(t.data)}))}}class Ei{onCaptureDestination(e){vi.registerCommandListener(xo.DOLLY_PATH_CAPTURE_DESTINATION,(t=>{e()}))}onPreview(e){vi.registerCommandListener(xo.DOLLY_PATH_PREVIEW,(t=>{e(t.data)}))}onStopPreview(e){vi.registerCommandListener(xo.DOLLY_PATH_STOP_PREVIEW,(t=>{e()}))}}class mi{type="";data={};constructor(e,t){this.type=e,this.data=t}}class Ti{static PLAYER_READY="vrtalk_msg_player_ready";static PLAYER_STATUS_UPDATE="vrtalk_msg_player_status_update";static COMPONENT_UPDATE="vrtalk_msg_component_update";static COMPONENT_ON_CLICK="vrtalk_msg_component_on_click";static COMPONENT_TRANSITION_ANIMATION_FINISHED="vrtalk_msg_component_transition_animation_finished";static FOV_SHOT_RESULT="vrtalk_msg_fov_shot_result";static TRIMMER_UPDATE="vrtalk_msg_trimmer_update";static TRIMMER_ON_CLICK="vrtalk_msg_trimmer_on_click";static STICKER_UPDATE="vrtalk_msg_sticker_update";static STICKER_ON_CLICK="vrtalk_msg_sticker_on_click";static TARGET_UPDATE="vrtalk_msg_target_update";static TARGET_ON_CLICK="vrtalk_msg_target_on_click";static OBSTACLE_UPDATE="vrtalk_msg_obstacle_update";static OBSTACLE_ON_CLICK="vrtalk_msg_obstacle_on_click";static SPACE_FENCE_UPDATE="vrtalk_msg_space_fence_update";static SPACE_FENCE_ON_CLICK="vrtalk_msg_space_fence_on_click";static WORMHOLE_UPDATE="vrtalk_msg_wormhole_update";static WORMHOLE_ON_CLICK="vrtalk_msg_wormhole_on_click";static ASSET_LABEL_UPDATE="vrtalk_msg_asset_label_update";static ASSET_LABEL_ON_CLICK="vrtalk_msg_asset_label_on_click";static SWEEP_IMPORT_FROM_MATTERPORT="vrtalk_msg_sweep_import_from_matterport";static SWEEP_SYNC_MATTERPORT_ENABLED_STATE="vrtalk_msg_sweep_sync_matterport_enabled_state";static SWEEP_REQUEST_MODIFY_ENABLED="vrtalk_msg_sweep_request_modify_enabled";static FLOOR_IMPORT_FROM_MATTERPORT="vrtalk_msg_floor_import_from_matterport";static FLOOR_ENTER="vrtalk_msg_floor_enter";static FLOOR_LEAVE="vrtalk_msg_floor_leave";static CAMERA_POSE_UPDATE="vrtalk_msg_camera_pose_update";static RENDERER_SCREENSHOT_READY="vrtalk_msg_renderer_screenshot_ready";static RENDERER_PANORAMA_IMAGE_READY="vrtalk_msg_renderer_panorama_image_ready";static RENDERER_WORLD_SIZE_READY="vrtalk_msg_renderer_world_size_ready";static DOLLY_PATH_DESTINATION_CAPTURED="vrtalk_msg_dolly_path_destination_captured";static NAVIGATION_RESULT_READY="vrtalk_msg_navigation_result_ready";static NAVIGATION_START="vrtalk_msg_navigation_start";static NAVIGATION_END="vrtalk_msg_navigation_end";static NAVIGATION_CANCEL="vrtalk_msg_navigation_cancel"}class Ci{sendCameraPoseUpdate(e){window.parent.postMessage(new mi(Ti.CAMERA_POSE_UPDATE,e),"*")}}class pi{sendUpdate(e){window.parent.postMessage(new mi(Ti.COMPONENT_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new mi(Ti.COMPONENT_ON_CLICK,e),"*")}sendTransitionAnimationFinished(e,t){window.parent.postMessage(new mi(Ti.COMPONENT_TRANSITION_ANIMATION_FINISHED,{componentId:e,animationId:t}),"*")}}class Ai{sendShotResult(e){window.parent.postMessage(new mi(Ti.FOV_SHOT_RESULT,JSON.parse(JSON.stringify(e))),"*")}}class Oi{sendImportFromMatterport(e){window.parent.postMessage(new mi(Ti.FLOOR_IMPORT_FROM_MATTERPORT,e),"*")}sendEnter(e){window.parent.postMessage(new mi(Ti.FLOOR_ENTER,e),"*")}sendLeave(e){window.parent.postMessage(new mi(Ti.FLOOR_LEAVE,e),"*")}}class gi{sendReady(){window.parent.postMessage(new mi(Ti.PLAYER_READY,{}),"*")}sendStatusUpdate(e){window.parent.postMessage(new mi(Ti.PLAYER_STATUS_UPDATE,e),"*")}}class Ii{sendImportFromMatterport(e){window.parent.postMessage(new mi(Ti.SWEEP_IMPORT_FROM_MATTERPORT,e),"*")}sendSyncMatterportEnabledState(e){window.parent.postMessage(new mi(Ti.SWEEP_SYNC_MATTERPORT_ENABLED_STATE,e),"*")}sendRequestModifyEnabled(e,t){window.parent.postMessage(new mi(Ti.SWEEP_REQUEST_MODIFY_ENABLED,{sweepId:e,enabled:t}),"*")}}class Si{sendScreenshotReady(e){window.parent.postMessage(new mi(Ti.RENDERER_SCREENSHOT_READY,e),"*")}sendPanoramaImageReady(e){window.parent.postMessage(new mi(Ti.RENDERER_PANORAMA_IMAGE_READY,e),"*")}sendWorldSizeReady(e){window.parent.postMessage(new mi(Ti.RENDERER_WORLD_SIZE_READY,JSON.parse(JSON.stringify(e))),"*")}}class Ni{sendNavigationResultReady(e){window.parent.postMessage(new mi(Ti.NAVIGATION_RESULT_READY,JSON.parse(JSON.stringify(e))),"*")}sendNavigationStart(e){window.parent.postMessage(new mi(Ti.NAVIGATION_START,JSON.parse(JSON.stringify(e))),"*")}sendNavigationEnd(e){window.parent.postMessage(new mi(Ti.NAVIGATION_END,JSON.parse(JSON.stringify(e))),"*")}sendNavigationCancel(e){window.parent.postMessage(new mi(Ti.NAVIGATION_CANCEL,JSON.parse(JSON.stringify(e))),"*")}}class Li{sendUpdate(e){window.parent.postMessage(new mi(Ti.OBSTACLE_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new mi(Ti.OBSTACLE_ON_CLICK,e),"*")}}class Ri{sendUpdate(e){window.parent.postMessage(new mi(Ti.TRIMMER_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new mi(Ti.TRIMMER_ON_CLICK,e),"*")}}class ui{sendUpdate(e){window.parent.postMessage(new mi(Ti.STICKER_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new mi(Ti.STICKER_ON_CLICK,e),"*")}}class Pi{sendUpdate(e){window.parent.postMessage(new mi(Ti.ASSET_LABEL_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new mi(Ti.ASSET_LABEL_ON_CLICK,e),"*")}}class Mi{sendUpdate(e){window.parent.postMessage(new mi(Ti.TARGET_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new mi(Ti.TARGET_ON_CLICK,e),"*")}}class Di{sendUpdate(e){window.parent.postMessage(new mi(Ti.WORMHOLE_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new mi(Ti.WORMHOLE_ON_CLICK,e),"*")}}class yi{sendUpdate(e){window.parent.postMessage(new mi(Ti.SPACE_FENCE_UPDATE,JSON.parse(JSON.stringify(e))),"*")}sendOnClick(e){window.parent.postMessage(new mi(Ti.SPACE_FENCE_ON_CLICK,e),"*")}}class hi{sendDestinationCaptured(e){window.parent.postMessage(new mi(Ti.DOLLY_PATH_DESTINATION_CAPTURED,JSON.parse(JSON.stringify(e))),"*")}}class wi{onUpdateAll(e){vi.registerCommandListener(xo.SWEEP_UPDATE_ALL,(t=>{e(t.data)}))}onUpdate(e){vi.registerCommandListener(xo.SWEEP_UPDATE,(t=>{e(t.data)}))}onDeleteVirtual(e){vi.registerCommandListener(xo.SWEEP_DELETE_VIRTUAL,(t=>{e(t.data)}))}onUpdateRenderFlagVisible(e){vi.registerCommandListener(xo.SWEEP_UPDATE_RENDER_FLAG_VISIBLE,(t=>{e(t.data)}))}}class vi{static commandListenerPool=new Map;static commandPlayer=new Ho;static commandCover=new Yo;static commandUi=new Xo;static commandInfoTemplate=new Wo;static commandInformation=new Ko;static commandComponent=new Jo;static commandFov=new zo;static commandLayer=new Qo;static commandLight=new jo;static commandTrimmer=new Zo;static commandSticker=new qo;static commandSweep=new wi;static commandFloor=new $o;static commandCamera=new ei;static commandRenderer=new ti;static commandMarker=new ai;static commandNavigation=new si;static commandObstacle=new ni;static commandAudio=new oi;static commandAssetLabel=new ii;static commandTarget=new ri;static commandWormhole=new ci;static commandSpaceFence=new li;static commandMonitor=new di;static commandMessageCard=new _i;static commandDollyPath=new Ei;static messageCamera=new Ci;static messageComponent=new pi;static messageFov=new Ai;static messageFloor=new Oi;static messagePlayer=new gi;static messageSweep=new Ii;static messageRenderer=new Si;static messageNavigation=new Ni;static messageObstacle=new Li;static messageTrimmer=new Ri;static messageSticker=new ui;static messageAssetLabel=new Pi;static messageTarget=new Mi;static messageWormhole=new Di;static messageSpaceFence=new yi;static messageDollyPath=new hi;static registerCommandListener(e,t){vi.commandListenerPool.has(e)||vi.commandListenerPool.set(e,[]),vi.commandListenerPool.get(e).push(t)}static unRegisterCommandListener(e,t){if(!vi.commandListenerPool.has(e))return;const a=vi.commandListenerPool.get(e).indexOf(t);a>=0&&vi.commandListenerPool.get(e).splice(a,1)}static init(){window.addEventListener("message",(e=>{if(e.data.type&&0===e.data.type.indexOf("vrtalk_cmd_")){const t=e.data;vi.commandListenerPool.has(t.type)&&vi.commandListenerPool.get(t.type).forEach((e=>{e(t)}))}}))}}class bi{player;constructor(e){this.player=e}onReady(e){this.player.registerMessageListener(Ti.PLAYER_READY,(t=>{e()}))}onStatusUpdate(e){this.player.registerMessageListener(Ti.PLAYER_STATUS_UPDATE,(t=>{e(t.data)}))}}class Vi{player;constructor(e){this.player=e}sendStart(e,t){this.player.sendCommand(new Go(xo.PLAYER_START,JSON.parse(JSON.stringify({vrContentData:e,isForceIgnoreEnterBtn:t}))))}sendModeUpdate(e){this.player.sendCommand(new Go(xo.PLAYER_MODE_UPDATE,e))}}class Ui{player;constructor(e){this.player=e}sendCoverSettingsUpdate(e){this.player.sendCommand(new Go(xo.COVER_SETTINGS_UPDATE,JSON.parse(JSON.stringify(e))))}}class fi{player;constructor(e){this.player=e}sendUiSettingsUpdate(e){this.player.sendCommand(new Go(xo.UI_SETTINGS_UPDATE,JSON.parse(JSON.stringify(e))))}}class Bi{player;constructor(e){this.player=e}sendInfoTemplateSettingsUpdate(e){this.player.sendCommand(new Go(xo.INFO_TEMPLATE_SETTINGS_UPDATE,JSON.parse(JSON.stringify(e))))}}class ki{player;constructor(e){this.player=e}sendUpdateContentCard(e){this.player.sendCommand(new Go(xo.INFORMATION_CONTENT_CARD_UPDATE,JSON.parse(JSON.stringify(e))))}sendDeleteContentCard(e){this.player.sendCommand(new Go(xo.INFORMATION_CONTENT_CARD_DELETE,e))}}class Fi{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Go(xo.COMPONENT_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Go(xo.COMPONENT_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Go(xo.COMPONENT_DELETE,e))}sendFollowMouse(e){this.player.sendCommand(new Go(xo.COMPONENT_FOLLOW_MOUSE,e))}sendControllerModify(e,t){this.player.sendCommand(new Go(xo.COMPONENT_CONTROLLER_MODIFY,{componentId:t,controllerType:e}))}sendPlayTransitionAnimation(e,t){this.player.sendCommand(new Go(xo.COMPONENT_PLAY_TRANSITION_ANIMATION,{componentId:e,animationId:t}))}sendStopTransitionAnimation(e){this.player.sendCommand(new Go(xo.COMPONENT_STOP_TRANSITION_ANIMATION,{componentId:e}))}send3dModelPlayAnimationClip(e,t){this.player.sendCommand(new Go(xo.COMPONENT_3D_MODEL_PLAY_ANIMATION_CLIP,{modelComponentId:e,animationClipId:t}))}send3dModelStopAnimationClip(e){this.player.sendCommand(new Go(xo.COMPONENT_3D_MODEL_STOP_ANIMATION_CLIP,{modelComponentId:e}))}send2dTextAutoFit(e){this.player.sendCommand(new Go(xo.COMPONENT_2D_TEXT_AUTO_FIT,e))}}class Gi{player;constructor(e){this.player=e}enterFovShotMode(e){this.player.sendCommand(new Go(xo.FOV_ENTER_SHOT_MODE,JSON.parse(JSON.stringify(e))))}exitFovShotMode(){this.player.sendCommand(new Go(xo.FOV_EXIT_SHOT_MODE,{}))}sendUpdate(e){this.player.sendCommand(new Go(xo.FOV_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Go(xo.FOV_DELETE,e))}}class xi{player;constructor(e){this.player=e}sendUpdate(e){this.player.sendCommand(new Go(xo.LAYER_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e,t){this.player.sendCommand(new Go(xo.LAYER_DELETE,{layerId:e,deleteComponents:t}))}sendVisible(e,t){this.player.sendCommand(new Go(xo.LAYER_VISIBLE,{layerId:e,visible:t}))}}class Hi{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Go(xo.LIGHT_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Go(xo.LIGHT_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Go(xo.LIGHT_DELETE,e))}}class Yi{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Go(xo.TRIMMER_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Go(xo.TRIMMER_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Go(xo.TRIMMER_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Go(xo.TRIMMER_CONTROLLER_MODIFY,{controllerType:e,trimmerId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Go(xo.TRIMMER_EDITING_STATE_UPDATE,e))}}class Xi{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Go(xo.STICKER_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Go(xo.STICKER_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Go(xo.STICKER_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Go(xo.STICKER_CONTROLLER_MODIFY,{controllerType:e,stickerId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Go(xo.STICKER_EDITING_STATE_UPDATE,e))}}class Wi{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Go(xo.ASSET_LABEL_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Go(xo.ASSET_LABEL_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Go(xo.ASSET_LABEL_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Go(xo.ASSET_LABEL_CONTROLLER_MODIFY,{controllerType:e,assetLabelId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Go(xo.ASSET_LABEL_EDITING_STATE_UPDATE,e))}}class Ki{player;constructor(e){this.player=e}sendUpdateAll(e){this.player.sendCommand(new Go(xo.SWEEP_UPDATE_ALL,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Go(xo.SWEEP_UPDATE,JSON.parse(JSON.stringify(e))))}sendDeleteVirtual(e){this.player.sendCommand(new Go(xo.SWEEP_DELETE_VIRTUAL,e))}sendUpdateRenderFlagVisible(e){this.player.sendCommand(new Go(xo.SWEEP_UPDATE_RENDER_FLAG_VISIBLE,e))}}class Ji{player;constructor(e){this.player=e}sendUpdate(e){this.player.sendCommand(new Go(xo.FLOOR_UPDATE,JSON.parse(JSON.stringify(e))))}}class zi{player;constructor(e){this.player=e}sendMoveTo(e,t){this.player.sendCommand(new Go(xo.CAMERA_MOVE_TO,JSON.parse(JSON.stringify({transition:e,cameraMode:t}))))}sendMoveToInside(e,t,a){this.player.sendCommand(new Go(xo.CAMERA_MOVE_TO_INSIDE,JSON.parse(JSON.stringify({transition:e,transitionTime:t,cameraPose:a}))))}sendMoveToVrFov(e,t,a){this.player.sendCommand(new Go(xo.CAMERA_MOVE_TO_VR_FOV,JSON.parse(JSON.stringify({transition:e,transitionTime:t,fovId:a}))))}sendMoveToNearComponent(e,t,a){this.player.sendCommand(new Go(xo.CAMERA_MOVE_TO_NEAR_COMPONENT,JSON.parse(JSON.stringify({transition:e,transitionTime:t,componentId:a}))))}sendMoveToWatchPosition(e,t,a){this.player.sendCommand(new Go(xo.CAMERA_MOVE_TO_WATCH_POSITION,JSON.parse(JSON.stringify({transition:e,transitionTime:t,position:a}))))}}class Qi{player;constructor(e){this.player=e}sendTakeScreenshot(e,t){this.player.sendCommand(new Go(xo.RENDERER_TAKE_SCREENSHOT,{resolution:e,visibility:t}))}sendGetPanoramaImage(){this.player.sendCommand(new Go(xo.RENDERER_GET_PANORAMA_IMAGE,{}))}}class ji{player;constructor(e){this.player=e}sendMarkerUpdate(e){this.player.sendCommand(new Go(xo.MARKER_UPDATE,JSON.parse(JSON.stringify(e))))}sendMarkerDelete(e){this.player.sendCommand(new Go(xo.MARKER_DELETE,e))}}class Zi{player;constructor(e){this.player=e}sendNavigationRequest(e){this.player.sendCommand(new Go(xo.NAVIGATION_REQUEST,JSON.parse(JSON.stringify(e))))}sendNavigationStart(e){this.player.sendCommand(new Go(xo.NAVIGATION_START,JSON.parse(JSON.stringify(e))))}sendNavigationCancel(){this.player.sendCommand(new Go(xo.NAVIGATION_CANCEL,{}))}}class qi{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Go(xo.OBSTACLE_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Go(xo.OBSTACLE_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Go(xo.OBSTACLE_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Go(xo.OBSTACLE_CONTROLLER_MODIFY,{controllerType:e,obstacleId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Go(xo.OBSTACLE_EDITING_STATE_UPDATE,e))}sendGroupVisibleUpdate(e,t){this.player.sendCommand(new Go(xo.OBSTACLE_GROUP_VISIBLE_UPDATE,{groupId:e,visible:t}))}}class $i{player;constructor(e){this.player=e}sendAudioListUpdate(e){this.player.sendCommand(new Go(xo.AUDIO_LIST_UPDATE,JSON.parse(JSON.stringify(e))))}sendAudioListDelete(e){this.player.sendCommand(new Go(xo.AUDIO_LIST_DELETE,{audioListId:e}))}sendAudioUpdate(e){this.player.sendCommand(new Go(xo.AUDIO_UPDATE,JSON.parse(JSON.stringify(e))))}sendAudioDelete(e,t){this.player.sendCommand(new Go(xo.AUDIO_DELETE,{audioListId:e,audioId:t}))}sendAudioCenterPlayerShowPlayControlUpdate(e){this.player.sendCommand(new Go(xo.AUDIO_CENTER_PLAYER_SHOW_PLAY_CONTROL_UPDATE,{show:e}))}sendAudioCenterPlayerShowMuteControlUpdate(e){this.player.sendCommand(new Go(xo.AUDIO_CENTER_PLAYER_SHOW_VOLUME_CONTROL_UPDATE,{show:e}))}sendAudioCenterPlayerVolumeUpdate(e){this.player.sendCommand(new Go(xo.AUDIO_CENTER_PLAYER_VOLUME_UPDATE,{volume:e}))}}class er{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Go(xo.TARGET_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Go(xo.TARGET_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Go(xo.TARGET_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Go(xo.TARGET_CONTROLLER_MODIFY,{controllerType:e,targetId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Go(xo.TARGET_EDITING_STATE_UPDATE,e))}sendGroupVisibleUpdate(e,t){this.player.sendCommand(new Go(xo.TARGET_GROUP_VISIBLE_UPDATE,{groupId:e,visible:t}))}}class tr{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Go(xo.WORMHOLE_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Go(xo.WORMHOLE_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Go(xo.WORMHOLE_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Go(xo.WORMHOLE_CONTROLLER_MODIFY,{controllerType:e,wormholeId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Go(xo.WORMHOLE_EDITING_STATE_UPDATE,e))}sendGroupVisibleUpdate(e,t){this.player.sendCommand(new Go(xo.WORMHOLE_GROUP_VISIBLE_UPDATE,{groupId:e,visible:t}))}}class ar{player;constructor(e){this.player=e}sendCreate(e){this.player.sendCommand(new Go(xo.SPACE_FENCE_CREATE,JSON.parse(JSON.stringify(e))))}sendUpdate(e){this.player.sendCommand(new Go(xo.SPACE_FENCE_UPDATE,JSON.parse(JSON.stringify(e))))}sendDelete(e){this.player.sendCommand(new Go(xo.SPACE_FENCE_DELETE,e))}sendControllerModify(e,t){this.player.sendCommand(new Go(xo.SPACE_FENCE_CONTROLLER_MODIFY,{controllerType:e,spaceFenceId:t}))}sendEditingStateUpdate(e){this.player.sendCommand(new Go(xo.SPACE_FENCE_EDITING_STATE_UPDATE,e))}sendGroupVisibleUpdate(e,t){this.player.sendCommand(new Go(xo.SPACE_FENCE_GROUP_VISIBLE_UPDATE,{groupId:e,visible:t}))}sendGroupColorUpdate(e,t){this.player.sendCommand(new Go(xo.SPACE_FENCE_GROUP_COLOR_UPDATE,{groupId:e,cubeFaceColor:JSON.parse(JSON.stringify(t))}))}}class sr{player;constructor(e){this.player=e}sendMonitorListUpdate(e){this.player.sendCommand(new Go(xo.MONITOR_LIST_UPDATE,JSON.parse(JSON.stringify(e))))}}class nr{player;constructor(e){this.player=e}sendPreview(e,t){this.player.sendCommand(new Go(xo.MESSAGE_CARD_PREVIEW,{card:e?JSON.parse(JSON.stringify(e)):null,show:t}))}}class or{player;constructor(e){this.player=e}captureDestination(){this.player.sendCommand(new Go(xo.DOLLY_PATH_CAPTURE_DESTINATION,{}))}preview(e){this.player.sendCommand(new Go(xo.DOLLY_PATH_PREVIEW,JSON.parse(JSON.stringify(e))))}stopPreview(){this.player.sendCommand(new Go(xo.DOLLY_PATH_STOP_PREVIEW,{}))}}class ir{player;constructor(e){this.player=e}onCameraPoseUpdate(e){this.player.registerMessageListener(Ti.CAMERA_POSE_UPDATE,(t=>{e(t.data)}))}}class rr{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ti.COMPONENT_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ti.COMPONENT_ON_CLICK,(t=>{e(t.data)}))}onTransitionAnimationFinished(e){this.player.registerMessageListener(Ti.COMPONENT_TRANSITION_ANIMATION_FINISHED,(t=>{e(t.data.componentId,t.data.animationId)}))}}class cr{player;constructor(e){this.player=e}onShotResult(e){this.player.registerMessageListener(Ti.FOV_SHOT_RESULT,(t=>{e(t.data)}))}}class lr{player;constructor(e){this.player=e}onImportFromMatterport(e){this.player.registerMessageListener(Ti.FLOOR_IMPORT_FROM_MATTERPORT,(t=>{e(t.data)}))}onEnterFloor(e){this.player.registerMessageListener(Ti.FLOOR_ENTER,(t=>{e(t.data)}))}onLeaveFloor(e){this.player.registerMessageListener(Ti.FLOOR_LEAVE,(t=>{e(t.data)}))}}class dr{player;constructor(e){this.player=e}onImportFromMatterport(e){this.player.registerMessageListener(Ti.SWEEP_IMPORT_FROM_MATTERPORT,(t=>{e(t.data)}))}onSyncMatterportEnabledState(e){this.player.registerMessageListener(Ti.SWEEP_SYNC_MATTERPORT_ENABLED_STATE,(t=>{e(t.data)}))}onRequestModifyEnabled(e){this.player.registerMessageListener(Ti.SWEEP_REQUEST_MODIFY_ENABLED,(t=>{e(t.data.sweepId,t.data.enabled)}))}}class _r{player;constructor(e){this.player=e}onScreenshotReady(e){this.player.registerMessageListener(Ti.RENDERER_SCREENSHOT_READY,(t=>{e(t.data)}))}onPanoramaImageReady(e){this.player.registerMessageListener(Ti.RENDERER_PANORAMA_IMAGE_READY,(t=>{e(t.data)}))}onWorldSizeReady(e){this.player.registerMessageListener(Ti.RENDERER_WORLD_SIZE_READY,(t=>{e(t.data)}))}}class Er{player;constructor(e){this.player=e}onNavigationResultReady(e){this.player.registerMessageListener(Ti.NAVIGATION_RESULT_READY,(t=>{e(t.data)}))}onNavigationStart(e){this.player.registerMessageListener(Ti.NAVIGATION_START,(t=>{e(t.data)}))}onNavigationEnd(e){this.player.registerMessageListener(Ti.NAVIGATION_END,(t=>{e(t.data)}))}onNavigationCancel(e){this.player.registerMessageListener(Ti.NAVIGATION_CANCEL,(t=>{e(t.data)}))}}class mr{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ti.OBSTACLE_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ti.OBSTACLE_ON_CLICK,(t=>{e(t.data)}))}}class Tr{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ti.TRIMMER_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ti.TRIMMER_ON_CLICK,(t=>{e(t.data)}))}}class Cr{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ti.STICKER_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ti.STICKER_ON_CLICK,(t=>{e(t.data)}))}}class pr{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ti.ASSET_LABEL_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ti.ASSET_LABEL_ON_CLICK,(t=>{e(t.data)}))}}class Ar{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ti.TARGET_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ti.TARGET_ON_CLICK,(t=>{e(t.data)}))}}class Or{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ti.WORMHOLE_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ti.WORMHOLE_ON_CLICK,(t=>{e(t.data)}))}}class gr{player;constructor(e){this.player=e}onUpdate(e){this.player.registerMessageListener(Ti.SPACE_FENCE_UPDATE,(t=>{e(t.data)}))}onClick(e){this.player.registerMessageListener(Ti.SPACE_FENCE_ON_CLICK,(t=>{e(t.data)}))}}class Ir{player;constructor(e){this.player=e}onDestinationCaptured(e){this.player.registerMessageListener(Ti.DOLLY_PATH_DESTINATION_CAPTURED,(t=>{e(t.data)}))}}class Sr{serviceRegion;iframeElement=null;messageListenerPool=new Map;messageCamera;messageComponent;messageFov;messageFloor;messagePlayer;messageSweep;messageRenderer;messageNavigation;messageObstacle;messageTrimmer;messageSticker;messageAssetLabel;messageTarget;messageWormhole;messageSpaceFence;messageDollyPath;commandPlayer;commandCover;commandUi;commandInfoTemplate;commandInformation;commandComponent;commandFov;commandLayer;commandLight;commandTrimmer;commandSticker;commandAssetLabel;commandSweep;commandFloor;commandCamera;commandRenderer;commandMarker;commandNavigation;commandObstacle;commandAudio;commandTarget;commandWormhole;commandSpaceFence;commandMonitor;commandMessageCard;commandDollyPath;constructor(e,t){this.serviceRegion=e,this.iframeElement=t,this.messageCamera=new ir(this),this.messageComponent=new rr(this),this.messageFov=new cr(this),this.messageFloor=new lr(this),this.messagePlayer=new bi(this),this.messageSweep=new dr(this),this.messageRenderer=new _r(this),this.messageNavigation=new Er(this),this.messageObstacle=new mr(this),this.messageTrimmer=new Tr(this),this.messageSticker=new Cr(this),this.messageAssetLabel=new pr(this),this.messageTarget=new Ar(this),this.messageWormhole=new Or(this),this.messageSpaceFence=new gr(this),this.messageDollyPath=new Ir(this),this.commandPlayer=new Vi(this),this.commandCover=new Ui(this),this.commandUi=new fi(this),this.commandInfoTemplate=new Bi(this),this.commandInformation=new ki(this),this.commandComponent=new Fi(this),this.commandFov=new Gi(this),this.commandLayer=new xi(this),this.commandLight=new Hi(this),this.commandTrimmer=new Yi(this),this.commandSticker=new Xi(this),this.commandAssetLabel=new Wi(this),this.commandSweep=new Ki(this),this.commandFloor=new Ji(this),this.commandCamera=new zi(this),this.commandRenderer=new Qi(this),this.commandMarker=new ji(this),this.commandNavigation=new Zi(this),this.commandObstacle=new qi(this),this.commandAudio=new $i(this),this.commandTarget=new er(this),this.commandWormhole=new tr(this),this.commandSpaceFence=new ar(this),this.commandMonitor=new sr(this),this.commandMessageCard=new nr(this),this.commandDollyPath=new or(this),this.iframeElement.addEventListener("load",(()=>{console.debug("[VRTalk Web SDK] player iframe loaded, add event listener"),window.addEventListener("message",(e=>{if(e.data.type&&0===e.data.type.indexOf("vrtalk_msg_")){const t=e.data;this.messageListenerPool.has(t.type)&&this.messageListenerPool.get(t.type).forEach((e=>{e(t)}))}}))}))}registerMessageListener(e,t){console.debug(`[VRTalk Web SDK]VRTalkEditablePlayer.registerMessageListener: ${e}`),this.messageListenerPool.get(e)||this.messageListenerPool.set(e,[]),this.messageListenerPool.get(e).push(t)}unRegisterMessageListener(e,t){if(console.debug(`[VRTalk Web SDK]VRTalkEditablePlayer.unRegisterMessageListener: ${e}`),!this.messageListenerPool.has(e))return;const a=this.messageListenerPool.get(e).indexOf(t);a>=0&&this.messageListenerPool.get(e).splice(a,1)}clearAllMessageListener(){console.debug("[VRTalk Web SDK] VRTalkEditablePlayer.clearAllMessageListener"),this.messageListenerPool.clear()}sendCommand(e){console.debug(`[VRTalk Web SDK]VRTalkEditablePlayer.sendCommand: ${e}`),this.iframeElement.contentWindow.postMessage(e,"*")}play(){console.debug("[VRTalk Web SDK]VRTalkEditablePlayer.play"),this.iframeElement.src=this.serviceRegion+"/vr-editor"}}function Nr(e){switch(e){case W.TYPE_2D_IMAGE:return Ss.COMPONENT_2D_IMAGE;case W.TYPE_2D_VIDEO:return Ss.COMPONENT_2D_VIDEO;case W.TYPE_2D_TEXT:return Ss.COMPONENT_2D_TEXT;case W.TYPE_2D_PANEL:return Ss.COMPONENT_2D_PANEL;case W.TYPE_2D_ADVERTISEMENT:return Ss.COMPONENT_2D_ADVERTISEMENT;case W.TYPE_3D_BOX:return Ss.COMPONENT_3D_BOX;case W.TYPE_3D_MODEL:return Ss.COMPONENT_3D_MODEL;case W.TYPE_TAG:return Ss.COMPONENT_TAG;default:return Ss.COMPONENT_2D_IMAGE}}function Lr(e,t,a,s,n){if(Array.isArray(e)&&0!==e.length)for(const o of e)o.id&&s.has(o.id)||(o.createSourceId||(o.createSourceType=t,o.createSourceId=a),n.push(o),o.id&&s.add(o.id))}function Rr(e){if(!e)return;Array.isArray(e.triggerList)||(e.triggerList=[]);const t=new Set;for(const a of e.triggerList)a.id&&t.add(a.id);const a=[];if(Array.isArray(e.componentList))for(const s of e.componentList){const e=Nr(s.type),n=s;if(Lr(n.triggerList,e,s.id,t,a),n.triggerList=[],s.type===W.TYPE_2D_IMAGE){const e=s;if(Array.isArray(e.sourceList))for(const n of e.sourceList){const e=n;Lr(e.triggerList,Ss.COMPONENT_2D_IMAGE,s.id,t,a),e.triggerList=[]}}else if(s.type===W.TYPE_2D_VIDEO){const e=s;if(Array.isArray(e.sourceList))for(const n of e.sourceList){const e=n;Lr(e.triggerList,Ss.COMPONENT_2D_VIDEO,s.id,t,a),e.triggerList=[]}}else if(s.type===W.TYPE_2D_PANEL){const e=s;if(Array.isArray(e.sceneDataList))for(const n of e.sceneDataList){const e=n;Lr(e.triggerList,Ss.COMPONENT_2D_PANEL,s.id,t,a),e.triggerList=[]}}}if(Array.isArray(e.sweepList))for(const s of e.sweepList){const e=s;Lr(e.triggerList,"sweep",s.id,t,a),e.triggerList=[]}if(Array.isArray(e.vrFloorList))for(const s of e.vrFloorList){const e=s;Lr(e.triggerList,"floor",s.id,t,a),e.triggerList=[]}if(Array.isArray(e.xrVirtualFloorList))for(const s of e.xrVirtualFloorList){const e=s;Lr(e.triggerList,"xr_virtual_floor",s.id,t,a),e.triggerList=[]}if(Array.isArray(e.variableList))for(const s of e.variableList){const e=s;Lr(e.triggerList,Ss.LOGIC_VARIABLE,s.key,t,a),e.triggerList=[]}if(Array.isArray(e.variableExpressionWatcherList))for(const s of e.variableExpressionWatcherList){const e=s;Lr(e.triggerList,Ss.LOGIC_EXPRESSION_WATCHER,s.id,t,a),e.triggerList=[]}if(Array.isArray(e.spaceFenceList))for(const s of e.spaceFenceList){const e=s;Lr(e.triggerList,Ss.SPACE_FENCE,s.id,t,a),e.triggerList=[]}if(Array.isArray(e.spaceFenceGroupList))for(const s of e.spaceFenceGroupList){const e=s;Lr(e.triggerList,Ss.SPACE_FENCE_GROUP,s.id,t,a),e.triggerList=[]}a.length>0&&e.triggerList.push(...a)}return t})()));
|
|
2
2
|
//# sourceMappingURL=vrtalk-web-sdk.js.map
|
package/package.json
CHANGED
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
import { VRTalkBaseData } from '../general/vrtalk-base-data';
|
|
2
|
-
import type { XrAnyAction } from './vr-action';
|
|
3
|
-
export declare type XrCanvasComponentType = 'image' | 'text' | 'progress-bar' | 'video' | 'button';
|
|
4
|
-
export declare class XrCanvasComponentTypeDefine {
|
|
5
|
-
static readonly IMAGE: XrCanvasComponentType;
|
|
6
|
-
static readonly TEXT: XrCanvasComponentType;
|
|
7
|
-
static readonly PROGRESS_BAR: XrCanvasComponentType;
|
|
8
|
-
static readonly VIDEO: XrCanvasComponentType;
|
|
9
|
-
static readonly BUTTON: XrCanvasComponentType;
|
|
10
|
-
}
|
|
11
|
-
export declare type XrCanvasComponentImageMode = 'contain' | 'cover' | 'fill' | 'scale-down' | 'none';
|
|
12
|
-
export declare class XrCanvasComponentImageModeDefine {
|
|
13
|
-
static readonly CONTAIN: XrCanvasComponentImageMode;
|
|
14
|
-
static readonly COVER: XrCanvasComponentImageMode;
|
|
15
|
-
static readonly FILL: XrCanvasComponentImageMode;
|
|
16
|
-
static readonly SCALE_DOWN: XrCanvasComponentImageMode;
|
|
17
|
-
static readonly NONE: XrCanvasComponentImageMode;
|
|
18
|
-
}
|
|
19
|
-
export declare type XrCanvasComponentTextAlign = 'left' | 'center' | 'right';
|
|
20
|
-
export declare class XrCanvasComponentTextAlignDefine {
|
|
21
|
-
static readonly LEFT: XrCanvasComponentTextAlign;
|
|
22
|
-
static readonly CENTER: XrCanvasComponentTextAlign;
|
|
23
|
-
static readonly RIGHT: XrCanvasComponentTextAlign;
|
|
24
|
-
}
|
|
25
|
-
export declare type XrCanvasComponentVerticalAlign = 'top' | 'middle' | 'bottom';
|
|
26
|
-
export declare class XrCanvasComponentVerticalAlignDefine {
|
|
27
|
-
static readonly TOP: XrCanvasComponentVerticalAlign;
|
|
28
|
-
static readonly MIDDLE: XrCanvasComponentVerticalAlign;
|
|
29
|
-
static readonly BOTTOM: XrCanvasComponentVerticalAlign;
|
|
30
|
-
}
|
|
31
|
-
export declare type XrCanvasComponentProgressBarDirection = 'horizontal' | 'vertical';
|
|
32
|
-
export declare class XrCanvasComponentProgressBarDirectionDefine {
|
|
33
|
-
static readonly HORIZONTAL: XrCanvasComponentProgressBarDirection;
|
|
34
|
-
static readonly VERTICAL: XrCanvasComponentProgressBarDirection;
|
|
35
|
-
}
|
|
36
|
-
export declare type XrCanvasComponentVideoObjectFit = 'contain' | 'cover' | 'fill' | 'none';
|
|
37
|
-
export declare class XrCanvasComponentVideoObjectFitDefine {
|
|
38
|
-
static readonly CONTAIN: XrCanvasComponentVideoObjectFit;
|
|
39
|
-
static readonly COVER: XrCanvasComponentVideoObjectFit;
|
|
40
|
-
static readonly FILL: XrCanvasComponentVideoObjectFit;
|
|
41
|
-
static readonly NONE: XrCanvasComponentVideoObjectFit;
|
|
42
|
-
}
|
|
43
|
-
export declare type XrCanvasComponentButtonIconPosition = 'left' | 'right' | 'top';
|
|
44
|
-
export declare class XrCanvasComponentButtonIconPositionDefine {
|
|
45
|
-
static readonly LEFT: XrCanvasComponentButtonIconPosition;
|
|
46
|
-
static readonly RIGHT: XrCanvasComponentButtonIconPosition;
|
|
47
|
-
static readonly TOP: XrCanvasComponentButtonIconPosition;
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* 画布组件基类(XrHamburgerMenuCanvasItem 内部组件)
|
|
51
|
-
*
|
|
52
|
-
* 字段集与 XrMonitorComponentBase 一一对应,包含:
|
|
53
|
-
* - 通用布局(width/height/positionX/positionY/rotation/zIndex/opacity/visible)
|
|
54
|
-
* - 视觉(backgroundColor/border/radius/paddingX/paddingY)
|
|
55
|
-
* - hover 样式(hoverStyleEnabled 控制是否启用,默认关;老数据无字段视为关)
|
|
56
|
-
* - clickActionList:运行时点击执行
|
|
57
|
-
* - css/script:高级覆盖
|
|
58
|
-
*/
|
|
59
|
-
export declare class XrCanvasComponentBase extends VRTalkBaseData {
|
|
60
|
-
type: XrCanvasComponentType;
|
|
61
|
-
name: string;
|
|
62
|
-
remark: string;
|
|
63
|
-
width: number;
|
|
64
|
-
height: number;
|
|
65
|
-
positionX: number;
|
|
66
|
-
positionY: number;
|
|
67
|
-
rotation: number;
|
|
68
|
-
opacity: number;
|
|
69
|
-
visible: boolean;
|
|
70
|
-
zIndex: number;
|
|
71
|
-
backgroundColor: string;
|
|
72
|
-
hoverStyleEnabled: boolean;
|
|
73
|
-
hoverBackgroundColor: string;
|
|
74
|
-
hoverOpacity: number;
|
|
75
|
-
radius: number;
|
|
76
|
-
border: string;
|
|
77
|
-
paddingX: number;
|
|
78
|
-
paddingY: number;
|
|
79
|
-
clickActionList: XrAnyAction[];
|
|
80
|
-
css: Record<string, string>;
|
|
81
|
-
script: string;
|
|
82
|
-
}
|
|
83
|
-
export declare class XrCanvasComponentImage extends XrCanvasComponentBase {
|
|
84
|
-
type: XrCanvasComponentType;
|
|
85
|
-
imageSrc: string;
|
|
86
|
-
imageMode: XrCanvasComponentImageMode;
|
|
87
|
-
}
|
|
88
|
-
export declare class XrCanvasComponentText extends XrCanvasComponentBase {
|
|
89
|
-
type: XrCanvasComponentType;
|
|
90
|
-
width: number;
|
|
91
|
-
height: number;
|
|
92
|
-
textContent: string;
|
|
93
|
-
textColor: string;
|
|
94
|
-
textSize: number;
|
|
95
|
-
textVerticalAlign: XrCanvasComponentVerticalAlign;
|
|
96
|
-
textAlign: XrCanvasComponentTextAlign;
|
|
97
|
-
textBold: boolean;
|
|
98
|
-
textItalic: boolean;
|
|
99
|
-
}
|
|
100
|
-
export declare class XrCanvasComponentProgressBar extends XrCanvasComponentBase {
|
|
101
|
-
type: XrCanvasComponentType;
|
|
102
|
-
width: number;
|
|
103
|
-
height: number;
|
|
104
|
-
progressBarColor: string;
|
|
105
|
-
progressRange: number;
|
|
106
|
-
progressBarDirection: XrCanvasComponentProgressBarDirection;
|
|
107
|
-
progress: string;
|
|
108
|
-
}
|
|
109
|
-
export declare class XrCanvasComponentVideo extends XrCanvasComponentBase {
|
|
110
|
-
type: XrCanvasComponentType;
|
|
111
|
-
width: number;
|
|
112
|
-
height: number;
|
|
113
|
-
videoSrc: string;
|
|
114
|
-
poster: string;
|
|
115
|
-
autoplay: boolean;
|
|
116
|
-
muted: boolean;
|
|
117
|
-
loop: boolean;
|
|
118
|
-
controls: boolean;
|
|
119
|
-
objectFit: XrCanvasComponentVideoObjectFit;
|
|
120
|
-
}
|
|
121
|
-
export declare class XrCanvasComponentButton extends XrCanvasComponentBase {
|
|
122
|
-
type: XrCanvasComponentType;
|
|
123
|
-
width: number;
|
|
124
|
-
height: number;
|
|
125
|
-
radius: number;
|
|
126
|
-
paddingX: number;
|
|
127
|
-
paddingY: number;
|
|
128
|
-
backgroundColor: string;
|
|
129
|
-
hoverBackgroundColor: string;
|
|
130
|
-
textContent: string;
|
|
131
|
-
textColor: string;
|
|
132
|
-
textSize: number;
|
|
133
|
-
textBold: boolean;
|
|
134
|
-
textItalic: boolean;
|
|
135
|
-
iconSrc: string;
|
|
136
|
-
iconPosition: XrCanvasComponentButtonIconPosition;
|
|
137
|
-
}
|