@3dsource/angular-unreal-module 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/3dsource-angular-unreal-module.mjs +604 -47
- package/fesm2022/3dsource-angular-unreal-module.mjs.map +1 -1
- package/lib/components/show-case/constants/index.d.ts +1 -1
- package/lib/components/show-case/container/show-case.component.d.ts +3 -3
- package/lib/components/show-case/interfaces/showcase-status.d.ts +1 -13
- package/lib/components/show-case/store/show-case.component.interface.d.ts +2 -2
- package/lib/components/show-case/store/show-case.component.store.d.ts +1 -1
- package/lib/helpers/CommandObserver.d.ts +1 -1
- package/lib/helpers/EventWrapper.d.ts +1 -1
- package/lib/helpers/FromStreamerHandlers/InstanceReadyHandler.d.ts +1 -1
- package/lib/helpers/LatencyTimings.d.ts +1 -1
- package/lib/helpers/prepare-commands.d.ts +1 -1
- package/lib/helpers/remove-exile-commands.d.ts +1 -1
- package/lib/interfaces/index.d.ts +1 -0
- package/lib/{constants → interfaces}/struct.d.ts +2200 -2200
- package/lib/interfaces/unreal-internal-signal-events.interface.d.ts +1 -1
- package/lib/services/aggregator.service.d.ts +1 -1
- package/lib/services/image-capture.service.d.ts +1 -1
- package/lib/services/unreal-communicator.service.d.ts +1 -1
- package/lib/store/unreal.actions.d.ts +1 -1
- package/lib/store/unreal.effects.d.ts +8 -8
- package/lib/store/unreal.feature.d.ts +1 -1
- package/lib/store/unreal.reducer.d.ts +1 -1
- package/lib/store/unreal.selectors.d.ts +2 -2
- package/package.json +5 -5
|
@@ -20,7 +20,6 @@ import { ComponentStore } from '@ngrx/component-store';
|
|
|
20
20
|
import { Actions, ofType, createEffect, provideEffects } from '@ngrx/effects';
|
|
21
21
|
import html2canvas from 'html2canvas';
|
|
22
22
|
import { concatLatestFrom } from '@ngrx/operators';
|
|
23
|
-
import { MetaBoxCommand, ESequenceLoopBehavior } from '@struct';
|
|
24
23
|
import dayjs from 'dayjs';
|
|
25
24
|
import { ImmerComponentStore } from 'ngrx-immer/component-store';
|
|
26
25
|
import { SourceTooltipPosition, SourceTooltipDirective } from '@source/ui-sdk/source-tooltip';
|
|
@@ -680,7 +679,7 @@ class LatencyTimings {
|
|
|
680
679
|
this.OnAllLatencyTimingsReady(this);
|
|
681
680
|
}
|
|
682
681
|
}
|
|
683
|
-
OnAllLatencyTimingsReady(
|
|
682
|
+
OnAllLatencyTimingsReady(_) { }
|
|
684
683
|
}
|
|
685
684
|
|
|
686
685
|
class SubService {
|
|
@@ -2402,6 +2401,602 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImpor
|
|
|
2402
2401
|
type: Injectable
|
|
2403
2402
|
}], ctorParameters: () => [] });
|
|
2404
2403
|
|
|
2404
|
+
const WSCloseCode_NORMAL_CLOSURE = 3000;
|
|
2405
|
+
const WSCloseCode_NORMAL_AFK_TIMEOUT = 3001;
|
|
2406
|
+
const WSCloseCode_NORMAL_MANUAL_DISCONNECT = 3002;
|
|
2407
|
+
const WSCloseCode_NORMAL_CIRRUS_CLOSED = 3003;
|
|
2408
|
+
const WSCloseCodes = [
|
|
2409
|
+
WSCloseCode_NORMAL_CLOSURE,
|
|
2410
|
+
WSCloseCode_NORMAL_AFK_TIMEOUT,
|
|
2411
|
+
WSCloseCode_NORMAL_MANUAL_DISCONNECT,
|
|
2412
|
+
WSCloseCode_NORMAL_CIRRUS_CLOSED,
|
|
2413
|
+
];
|
|
2414
|
+
|
|
2415
|
+
const MixPanelEvents = {
|
|
2416
|
+
pixelstreaming_end: 'pixelstreaming_end',
|
|
2417
|
+
pixelstreaming_start: 'pixelstreaming_start',
|
|
2418
|
+
render_request: 'render_request',
|
|
2419
|
+
custom_click: 'custom_click',
|
|
2420
|
+
route_change: 'route_change',
|
|
2421
|
+
};
|
|
2422
|
+
|
|
2423
|
+
/*
|
|
2424
|
+
export interface RequestReservation extends InstanceMessageBase {
|
|
2425
|
+
type: 'requestReservation';
|
|
2426
|
+
}
|
|
2427
|
+
*/
|
|
2428
|
+
const OrchestrationMessageTypes = {
|
|
2429
|
+
requestReservation: 'requestReservation',
|
|
2430
|
+
instanceReady: 'instanceReady',
|
|
2431
|
+
instanceReserved: 'instanceReserved',
|
|
2432
|
+
ssInfo: 'ssInfo',
|
|
2433
|
+
playerCount: 'playerCount',
|
|
2434
|
+
answer: 'answer',
|
|
2435
|
+
iceCandidate: 'iceCandidate',
|
|
2436
|
+
ping: 'ping',
|
|
2437
|
+
config: 'config',
|
|
2438
|
+
};
|
|
2439
|
+
|
|
2440
|
+
/* eslint-disable */
|
|
2441
|
+
/**
|
|
2442
|
+
* This file is auto-generated by the API parser
|
|
2443
|
+
* Please note that any changes in this file may be overwritten
|
|
2444
|
+
* Version: 2025-04-22 14:21:41
|
|
2445
|
+
/*
|
|
2446
|
+
|
|
2447
|
+
|
|
2448
|
+
|
|
2449
|
+
/**
|
|
2450
|
+
@description
|
|
2451
|
+
Type of Asset for all PAKs.
|
|
2452
|
+
*/
|
|
2453
|
+
var EAssetType;
|
|
2454
|
+
(function (EAssetType) {
|
|
2455
|
+
EAssetType["none"] = "none";
|
|
2456
|
+
EAssetType["product"] = "product";
|
|
2457
|
+
EAssetType["material"] = "material";
|
|
2458
|
+
EAssetType["environment"] = "environment";
|
|
2459
|
+
EAssetType["level"] = "level";
|
|
2460
|
+
EAssetType["camera"] = "camera";
|
|
2461
|
+
EAssetType["level_sequence"] = "level_sequence";
|
|
2462
|
+
EAssetType["screenshot"] = "screenshot";
|
|
2463
|
+
EAssetType["light"] = "light";
|
|
2464
|
+
})(EAssetType || (EAssetType = {}));
|
|
2465
|
+
/**
|
|
2466
|
+
@description
|
|
2467
|
+
Dimension type.
|
|
2468
|
+
*/
|
|
2469
|
+
var EDimensionType;
|
|
2470
|
+
(function (EDimensionType) {
|
|
2471
|
+
EDimensionType["none"] = "none";
|
|
2472
|
+
EDimensionType["millimeter"] = "millimeter";
|
|
2473
|
+
EDimensionType["centimeter"] = "centimeter";
|
|
2474
|
+
EDimensionType["meter"] = "meter";
|
|
2475
|
+
EDimensionType["kilometer"] = "kilometer";
|
|
2476
|
+
EDimensionType["inch"] = "inch";
|
|
2477
|
+
EDimensionType["duim"] = "duim";
|
|
2478
|
+
EDimensionType["yard"] = "yard";
|
|
2479
|
+
EDimensionType["miles"] = "miles";
|
|
2480
|
+
})(EDimensionType || (EDimensionType = {}));
|
|
2481
|
+
/**
|
|
2482
|
+
@description
|
|
2483
|
+
SequenceLoopBehavior.
|
|
2484
|
+
*/
|
|
2485
|
+
var ESequenceLoopBehavior;
|
|
2486
|
+
(function (ESequenceLoopBehavior) {
|
|
2487
|
+
ESequenceLoopBehavior["none"] = "none";
|
|
2488
|
+
ESequenceLoopBehavior["loop"] = "loop";
|
|
2489
|
+
ESequenceLoopBehavior["pingPong"] = "pingPong";
|
|
2490
|
+
ESequenceLoopBehavior["loopSection"] = "loopSection";
|
|
2491
|
+
ESequenceLoopBehavior["pingPongSection"] = "pingPongSection";
|
|
2492
|
+
})(ESequenceLoopBehavior || (ESequenceLoopBehavior = {}));
|
|
2493
|
+
/**
|
|
2494
|
+
@description
|
|
2495
|
+
Items types that can be placed in scene.
|
|
2496
|
+
*/
|
|
2497
|
+
var ESceneItemType;
|
|
2498
|
+
(function (ESceneItemType) {
|
|
2499
|
+
ESceneItemType["products"] = "products";
|
|
2500
|
+
ESceneItemType["lights"] = "lights";
|
|
2501
|
+
ESceneItemType["pawn"] = "pawn";
|
|
2502
|
+
})(ESceneItemType || (ESceneItemType = {}));
|
|
2503
|
+
/**
|
|
2504
|
+
@description
|
|
2505
|
+
Measure axis position.
|
|
2506
|
+
*/
|
|
2507
|
+
var EMeasureAxisZPosition;
|
|
2508
|
+
(function (EMeasureAxisZPosition) {
|
|
2509
|
+
EMeasureAxisZPosition["front"] = "front";
|
|
2510
|
+
EMeasureAxisZPosition["left"] = "left";
|
|
2511
|
+
EMeasureAxisZPosition["right"] = "right";
|
|
2512
|
+
EMeasureAxisZPosition["leftRight"] = "leftRight";
|
|
2513
|
+
EMeasureAxisZPosition["back"] = "back";
|
|
2514
|
+
})(EMeasureAxisZPosition || (EMeasureAxisZPosition = {}));
|
|
2515
|
+
/**
|
|
2516
|
+
@description
|
|
2517
|
+
Measure axis position.
|
|
2518
|
+
*/
|
|
2519
|
+
var EPaddingUnit;
|
|
2520
|
+
(function (EPaddingUnit) {
|
|
2521
|
+
EPaddingUnit["pixel"] = "pixel";
|
|
2522
|
+
EPaddingUnit["cm"] = "cm";
|
|
2523
|
+
})(EPaddingUnit || (EPaddingUnit = {}));
|
|
2524
|
+
/**
|
|
2525
|
+
@description
|
|
2526
|
+
Curve type.
|
|
2527
|
+
*/
|
|
2528
|
+
var ECurve;
|
|
2529
|
+
(function (ECurve) {
|
|
2530
|
+
ECurve["linear"] = "linear";
|
|
2531
|
+
ECurve["inSine"] = "inSine";
|
|
2532
|
+
ECurve["outSine"] = "outSine";
|
|
2533
|
+
ECurve["inOutSine"] = "inOutSine";
|
|
2534
|
+
ECurve["inQuad"] = "inQuad";
|
|
2535
|
+
ECurve["outQuad"] = "outQuad";
|
|
2536
|
+
ECurve["inOutQuad"] = "inOutQuad";
|
|
2537
|
+
ECurve["inCubic"] = "inCubic";
|
|
2538
|
+
ECurve["outCubic"] = "outCubic";
|
|
2539
|
+
ECurve["inOutCubic"] = "inOutCubic";
|
|
2540
|
+
ECurve["inQuart"] = "inQuart";
|
|
2541
|
+
ECurve["outQuart"] = "outQuart";
|
|
2542
|
+
ECurve["inOutQuart"] = "inOutQuart";
|
|
2543
|
+
ECurve["inQuint"] = "inQuint";
|
|
2544
|
+
ECurve["outQuint"] = "outQuint";
|
|
2545
|
+
ECurve["inOutQuint"] = "inOutQuint";
|
|
2546
|
+
ECurve["inExpo"] = "inExpo";
|
|
2547
|
+
ECurve["outExpo"] = "outExpo";
|
|
2548
|
+
ECurve["inOutExpo"] = "inOutExpo";
|
|
2549
|
+
ECurve["inCirc"] = "inCirc";
|
|
2550
|
+
ECurve["outCirc"] = "outCirc";
|
|
2551
|
+
ECurve["inOutCirc"] = "inOutCirc";
|
|
2552
|
+
ECurve["inBack"] = "inBack";
|
|
2553
|
+
ECurve["outBack"] = "outBack";
|
|
2554
|
+
ECurve["inOutBack"] = "inOutBack";
|
|
2555
|
+
ECurve["inElastic"] = "inElastic";
|
|
2556
|
+
ECurve["outElastic"] = "outElastic";
|
|
2557
|
+
ECurve["inOutElastic"] = "inOutElastic";
|
|
2558
|
+
ECurve["inBounce"] = "inBounce";
|
|
2559
|
+
ECurve["outBounce"] = "outBounce";
|
|
2560
|
+
ECurve["inOutBounce"] = "inOutBounce";
|
|
2561
|
+
})(ECurve || (ECurve = {}));
|
|
2562
|
+
/**
|
|
2563
|
+
@description
|
|
2564
|
+
Fit options.
|
|
2565
|
+
*/
|
|
2566
|
+
var EFitMethod;
|
|
2567
|
+
(function (EFitMethod) {
|
|
2568
|
+
EFitMethod["none"] = "none";
|
|
2569
|
+
EFitMethod["byLocation"] = "byLocation";
|
|
2570
|
+
EFitMethod["byRotation"] = "byRotation";
|
|
2571
|
+
EFitMethod["top"] = "top";
|
|
2572
|
+
EFitMethod["bottom"] = "bottom";
|
|
2573
|
+
EFitMethod["front"] = "front";
|
|
2574
|
+
EFitMethod["back"] = "back";
|
|
2575
|
+
EFitMethod["right"] = "right";
|
|
2576
|
+
EFitMethod["left"] = "left";
|
|
2577
|
+
})(EFitMethod || (EFitMethod = {}));
|
|
2578
|
+
/**
|
|
2579
|
+
@description
|
|
2580
|
+
Movement allowance along specified axis.
|
|
2581
|
+
*/
|
|
2582
|
+
var EMovementAllowance;
|
|
2583
|
+
(function (EMovementAllowance) {
|
|
2584
|
+
EMovementAllowance["none"] = "none";
|
|
2585
|
+
EMovementAllowance["planeYZ"] = "planeYZ";
|
|
2586
|
+
EMovementAllowance["planeXY"] = "planeXY";
|
|
2587
|
+
EMovementAllowance["planeXZ"] = "planeXZ";
|
|
2588
|
+
EMovementAllowance["axisX"] = "axisX";
|
|
2589
|
+
EMovementAllowance["axisY"] = "axisY";
|
|
2590
|
+
EMovementAllowance["axisZ"] = "axisZ";
|
|
2591
|
+
})(EMovementAllowance || (EMovementAllowance = {}));
|
|
2592
|
+
/**
|
|
2593
|
+
@description
|
|
2594
|
+
Alignment options.
|
|
2595
|
+
*/
|
|
2596
|
+
var EAlignment;
|
|
2597
|
+
(function (EAlignment) {
|
|
2598
|
+
EAlignment["byBottomSide"] = "byBottomSide";
|
|
2599
|
+
EAlignment["byTopSide"] = "byTopSide";
|
|
2600
|
+
EAlignment["byFrontSide"] = "byFrontSide";
|
|
2601
|
+
EAlignment["byBackSide"] = "byBackSide";
|
|
2602
|
+
EAlignment["byRightSide"] = "byRightSide";
|
|
2603
|
+
EAlignment["byLeftSide"] = "byLeftSide";
|
|
2604
|
+
})(EAlignment || (EAlignment = {}));
|
|
2605
|
+
/**
|
|
2606
|
+
@description
|
|
2607
|
+
Gizmo type.
|
|
2608
|
+
*/
|
|
2609
|
+
var EGizmoType;
|
|
2610
|
+
(function (EGizmoType) {
|
|
2611
|
+
EGizmoType["translation"] = "translation";
|
|
2612
|
+
EGizmoType["rotation"] = "rotation";
|
|
2613
|
+
EGizmoType["scale"] = "scale";
|
|
2614
|
+
EGizmoType["none"] = "none";
|
|
2615
|
+
})(EGizmoType || (EGizmoType = {}));
|
|
2616
|
+
/**
|
|
2617
|
+
@description
|
|
2618
|
+
Pawn camera control mode.
|
|
2619
|
+
*/
|
|
2620
|
+
var EControlMode;
|
|
2621
|
+
(function (EControlMode) {
|
|
2622
|
+
EControlMode["none"] = "none";
|
|
2623
|
+
EControlMode["select"] = "select";
|
|
2624
|
+
EControlMode["orbit"] = "orbit";
|
|
2625
|
+
EControlMode["pan"] = "pan";
|
|
2626
|
+
EControlMode["dolly"] = "dolly";
|
|
2627
|
+
})(EControlMode || (EControlMode = {}));
|
|
2628
|
+
/**
|
|
2629
|
+
@description
|
|
2630
|
+
Pawn movement mode.
|
|
2631
|
+
*/
|
|
2632
|
+
var EPawnMovementMode;
|
|
2633
|
+
(function (EPawnMovementMode) {
|
|
2634
|
+
EPawnMovementMode["none"] = "none";
|
|
2635
|
+
EPawnMovementMode["around"] = "around";
|
|
2636
|
+
EPawnMovementMode["aroundBlocking"] = "aroundBlocking";
|
|
2637
|
+
EPawnMovementMode["walk"] = "walk";
|
|
2638
|
+
EPawnMovementMode["aroundObstacles"] = "aroundObstacles";
|
|
2639
|
+
EPawnMovementMode["productsControl"] = "productsControl";
|
|
2640
|
+
})(EPawnMovementMode || (EPawnMovementMode = {}));
|
|
2641
|
+
/**
|
|
2642
|
+
@description
|
|
2643
|
+
Light mode.
|
|
2644
|
+
*/
|
|
2645
|
+
var ELightMode;
|
|
2646
|
+
(function (ELightMode) {
|
|
2647
|
+
ELightMode["NONE"] = "NONE";
|
|
2648
|
+
ELightMode["RECT"] = "RECT";
|
|
2649
|
+
ELightMode["PANEL"] = "PANEL";
|
|
2650
|
+
})(ELightMode || (ELightMode = {}));
|
|
2651
|
+
/**
|
|
2652
|
+
@description
|
|
2653
|
+
Rectangle light type.
|
|
2654
|
+
*/
|
|
2655
|
+
var ERectLightType;
|
|
2656
|
+
(function (ERectLightType) {
|
|
2657
|
+
ERectLightType["rect"] = "rect";
|
|
2658
|
+
ERectLightType["circ"] = "circ";
|
|
2659
|
+
ERectLightType["hexa"] = "hexa";
|
|
2660
|
+
})(ERectLightType || (ERectLightType = {}));
|
|
2661
|
+
/**
|
|
2662
|
+
@deprecated
|
|
2663
|
+
Don't need anymore.
|
|
2664
|
+
|
|
2665
|
+
All deprecated properties marked as optional. Use with care!
|
|
2666
|
+
|
|
2667
|
+
@description
|
|
2668
|
+
App type.
|
|
2669
|
+
*/
|
|
2670
|
+
var EAppType;
|
|
2671
|
+
(function (EAppType) {
|
|
2672
|
+
EAppType["none"] = "none";
|
|
2673
|
+
EAppType["platform"] = "platform";
|
|
2674
|
+
EAppType["metabox"] = "metabox";
|
|
2675
|
+
EAppType["vps"] = "vps";
|
|
2676
|
+
EAppType["abg"] = "abg";
|
|
2677
|
+
EAppType["htmx"] = "htmx";
|
|
2678
|
+
EAppType["proampac"] = "proampac";
|
|
2679
|
+
})(EAppType || (EAppType = {}));
|
|
2680
|
+
/**
|
|
2681
|
+
@description
|
|
2682
|
+
DLSS mode.
|
|
2683
|
+
*/
|
|
2684
|
+
var EDlssMode;
|
|
2685
|
+
(function (EDlssMode) {
|
|
2686
|
+
EDlssMode["Off"] = "Off";
|
|
2687
|
+
EDlssMode["Auto"] = "Auto";
|
|
2688
|
+
EDlssMode["DLAA"] = "DLAA";
|
|
2689
|
+
EDlssMode["UltraQuality"] = "UltraQuality";
|
|
2690
|
+
EDlssMode["Quality"] = "Quality";
|
|
2691
|
+
EDlssMode["Balanced"] = "Balanced";
|
|
2692
|
+
EDlssMode["Performance"] = "Performance";
|
|
2693
|
+
})(EDlssMode || (EDlssMode = {}));
|
|
2694
|
+
var MetaBoxCommand;
|
|
2695
|
+
(function (MetaBoxCommand) {
|
|
2696
|
+
/**
|
|
2697
|
+
@deprecated
|
|
2698
|
+
No need
|
|
2699
|
+
*/
|
|
2700
|
+
MetaBoxCommand["FLoadPaksInMemoryCommand"] = "loadPaksInMemory";
|
|
2701
|
+
MetaBoxCommand["FSetDlssModeCommand"] = "setDlssMode";
|
|
2702
|
+
MetaBoxCommand["FLoadProductCommand"] = "loadProduct";
|
|
2703
|
+
/**
|
|
2704
|
+
@deprecated
|
|
2705
|
+
Use {@link FLoadProductCommand}
|
|
2706
|
+
*/
|
|
2707
|
+
MetaBoxCommand["FSelectProductCommand"] = "selectProduct";
|
|
2708
|
+
/**
|
|
2709
|
+
@deprecated
|
|
2710
|
+
Use {@link FUnLoadProductByObjectNameCommand}
|
|
2711
|
+
*/
|
|
2712
|
+
MetaBoxCommand["FUnLoadProductCommand"] = "unLoadProduct";
|
|
2713
|
+
/**
|
|
2714
|
+
@deprecated
|
|
2715
|
+
Use {@link FUnLoadProductCommand}
|
|
2716
|
+
*/
|
|
2717
|
+
MetaBoxCommand["FRemoveProductCommand"] = "removeProduct";
|
|
2718
|
+
MetaBoxCommand["FUnLoadProductByObjectNameCommand"] = "unLoadProductByObjectName";
|
|
2719
|
+
/**
|
|
2720
|
+
@deprecated
|
|
2721
|
+
Use {@link FUnLoadProductByObjectNameCommand}
|
|
2722
|
+
*/
|
|
2723
|
+
MetaBoxCommand["FRemoveProductInSceneCommand"] = "removeProductInScene";
|
|
2724
|
+
MetaBoxCommand["FUnLoadAllProductsCommand"] = "unLoadAllProducts";
|
|
2725
|
+
/**
|
|
2726
|
+
@deprecated
|
|
2727
|
+
Use {@link FUnLoadAllProductsCommand}
|
|
2728
|
+
*/
|
|
2729
|
+
MetaBoxCommand["FRemoveAllProductsCommand"] = "removeAllProducts";
|
|
2730
|
+
MetaBoxCommand["FSetFlyingMeshCommand"] = "setFlyingMesh";
|
|
2731
|
+
MetaBoxCommand["FLoadLevelCommand"] = "loadLevel";
|
|
2732
|
+
MetaBoxCommand["FUnLoadLevelCommand"] = "unLoadLevel";
|
|
2733
|
+
/**
|
|
2734
|
+
@deprecated
|
|
2735
|
+
Use {@link FUnLoadLevelCommand}
|
|
2736
|
+
*/
|
|
2737
|
+
MetaBoxCommand["FHideLevelCommand"] = "hideLevel";
|
|
2738
|
+
MetaBoxCommand["FUnLoadAllLevelsCommand"] = "unLoadAllLevels";
|
|
2739
|
+
/**
|
|
2740
|
+
@deprecated
|
|
2741
|
+
Use {@link FUnLoadAllLevelsCommand}
|
|
2742
|
+
*/
|
|
2743
|
+
MetaBoxCommand["FHideAllLevelsCommand"] = "hideAllLevels";
|
|
2744
|
+
MetaBoxCommand["FSetMaterialCommand"] = "setMaterial";
|
|
2745
|
+
MetaBoxCommand["FSetFlyingMaterialCommand"] = "setFlyingMaterial";
|
|
2746
|
+
MetaBoxCommand["FPlayAnimationCommand"] = "playAnimation";
|
|
2747
|
+
MetaBoxCommand["FLoadButtonCommand"] = "loadButton";
|
|
2748
|
+
MetaBoxCommand["FUnLoadButtonByObjectNameCommand"] = "unLoadButtonByObjectName";
|
|
2749
|
+
MetaBoxCommand["FUnLoadAllButtonsCommand"] = "unLoadAllButtons";
|
|
2750
|
+
MetaBoxCommand["FSetButtonScaleCommand"] = "setButtonScale";
|
|
2751
|
+
MetaBoxCommand["FRequestUnwrapImageCommand"] = "requestUnwrapImage";
|
|
2752
|
+
MetaBoxCommand["FLoadMeasureCommand"] = "loadMeasure";
|
|
2753
|
+
MetaBoxCommand["FUnLoadMeasureByObjectNameCommand"] = "unLoadMeasureByObjectName";
|
|
2754
|
+
MetaBoxCommand["FUnLoadAllMeasuresCommand"] = "unLoadAllMeasures";
|
|
2755
|
+
MetaBoxCommand["FGetAssetsInPakCommand"] = "getAssetsInPak";
|
|
2756
|
+
MetaBoxCommand["FChangeGizmoTypeCommand"] = "changeGizmoType";
|
|
2757
|
+
MetaBoxCommand["FSetSelectionSettingsCommand"] = "setSelectionSettings";
|
|
2758
|
+
MetaBoxCommand["FDragCommand"] = "drag";
|
|
2759
|
+
MetaBoxCommand["FDropCommand"] = "drop";
|
|
2760
|
+
/**
|
|
2761
|
+
@deprecated
|
|
2762
|
+
Use {@link FFitToObjectsCommand}
|
|
2763
|
+
*/
|
|
2764
|
+
MetaBoxCommand["FFitCommand"] = "fit";
|
|
2765
|
+
MetaBoxCommand["FFitToObjectsCommand"] = "fitToObjects";
|
|
2766
|
+
MetaBoxCommand["FFitToObjectsByBSphereCommand"] = "fitToObjectsByBSphere";
|
|
2767
|
+
MetaBoxCommand["FFitToObjectsByBBoxCommand"] = "fitToObjectsByBBox";
|
|
2768
|
+
/**
|
|
2769
|
+
@deprecated
|
|
2770
|
+
Use {@link FSelectProductByObjectNameCommand}
|
|
2771
|
+
*/
|
|
2772
|
+
MetaBoxCommand["FSelectProductInSceneCommand"] = "selectProductInScene";
|
|
2773
|
+
MetaBoxCommand["FSelectProductByObjectNameCommand"] = "selectProductByObjectName";
|
|
2774
|
+
MetaBoxCommand["FUnselectAllProductsCommand"] = "unselectAllProducts";
|
|
2775
|
+
MetaBoxCommand["FMoveSelectedCommand"] = "moveSelected";
|
|
2776
|
+
MetaBoxCommand["FMoveProductByObjectNameCommand"] = "moveProductByObjectName";
|
|
2777
|
+
MetaBoxCommand["FSetProductsLocationCommand"] = "setProductsLocation";
|
|
2778
|
+
MetaBoxCommand["FAlignProductsToPlaneCommand"] = "alignProductsToPlane";
|
|
2779
|
+
MetaBoxCommand["FRotateSelectedCommand"] = "rotateSelected";
|
|
2780
|
+
MetaBoxCommand["FRotateObjectNameCommand"] = "rotateObjectName";
|
|
2781
|
+
MetaBoxCommand["FRotateActorByTagCommand"] = "rotateActorByTag";
|
|
2782
|
+
/**
|
|
2783
|
+
@deprecated
|
|
2784
|
+
Use {@link FUnloadSelectedProductCommand}
|
|
2785
|
+
*/
|
|
2786
|
+
MetaBoxCommand["FRemoveFocusedCommand"] = "removeFocused";
|
|
2787
|
+
MetaBoxCommand["FUnloadSelectedProductCommand"] = "unloadSelectedProduct";
|
|
2788
|
+
MetaBoxCommand["FAttachActorCommand"] = "attachActor";
|
|
2789
|
+
MetaBoxCommand["FDetachActorCommand"] = "detachActor";
|
|
2790
|
+
MetaBoxCommand["FDetachAllActorsCommand"] = "detachAllActors";
|
|
2791
|
+
MetaBoxCommand["FMoveAttachedActorsInSocketCommand"] = "moveAttachedActorsInSocket";
|
|
2792
|
+
MetaBoxCommand["FEnableTeleportCommand"] = "enableTeleport";
|
|
2793
|
+
MetaBoxCommand["FSetPawnMovementModeCommand"] = "setPawnMovementMode";
|
|
2794
|
+
MetaBoxCommand["FSnapAxisCommand"] = "snapAxis";
|
|
2795
|
+
MetaBoxCommand["FClickSnapCommand"] = "clickSnap";
|
|
2796
|
+
MetaBoxCommand["FPawnTransformControlCommand"] = "pawnTransformControl";
|
|
2797
|
+
MetaBoxCommand["FFlyingProductCommand"] = "flyingProduct";
|
|
2798
|
+
MetaBoxCommand["FFreezeFrameCommand"] = "freezeFrame";
|
|
2799
|
+
/**
|
|
2800
|
+
@deprecated
|
|
2801
|
+
Use {@link FControlSensitivityCommand}
|
|
2802
|
+
*/
|
|
2803
|
+
MetaBoxCommand["FMouseSensitivityCommand"] = "mouseSensitivity";
|
|
2804
|
+
MetaBoxCommand["FControlSensitivityCommand"] = "controlSensitivity";
|
|
2805
|
+
MetaBoxCommand["FEnableComposureCommand"] = "enableComposure";
|
|
2806
|
+
MetaBoxCommand["FEnableCursorCommand"] = "enableCursor";
|
|
2807
|
+
MetaBoxCommand["FEnableControlsCommand"] = "enableControls";
|
|
2808
|
+
MetaBoxCommand["FEnableSelectionByCursorCommand"] = "enableSelectionByCursor";
|
|
2809
|
+
MetaBoxCommand["FEnableRotationByCursorCommand"] = "enableRotationByCursor";
|
|
2810
|
+
MetaBoxCommand["FEnableZoomByCursorCommand"] = "enableZoomByCursor";
|
|
2811
|
+
MetaBoxCommand["FEnableInteractByCursorCommand"] = "enableInteractByCursor";
|
|
2812
|
+
MetaBoxCommand["FEnablePanByCursorCommand"] = "enablePanByCursor";
|
|
2813
|
+
MetaBoxCommand["FEnableControlsByCursorCommand"] = "enableControlsByCursor";
|
|
2814
|
+
MetaBoxCommand["FSetControlCameraModeCommand"] = "setControlCameraMode";
|
|
2815
|
+
MetaBoxCommand["FSetCameraHeightCommand"] = "setCameraHeight";
|
|
2816
|
+
MetaBoxCommand["FAddCameraHeightCommand"] = "addCameraHeight";
|
|
2817
|
+
/**
|
|
2818
|
+
@deprecated
|
|
2819
|
+
Use {@link FAddCameraHeightCommand}
|
|
2820
|
+
*/
|
|
2821
|
+
MetaBoxCommand["FMoveCameraCommand"] = "moveCamera";
|
|
2822
|
+
MetaBoxCommand["FCameraBoxCommand"] = "cameraBox";
|
|
2823
|
+
/**
|
|
2824
|
+
@deprecated
|
|
2825
|
+
Use {@link FClampPanToProductsCommand}
|
|
2826
|
+
*/
|
|
2827
|
+
MetaBoxCommand["FClampPanToProductCommand"] = "clampPanToProduct";
|
|
2828
|
+
MetaBoxCommand["FClampPanToProductsCommand"] = "clampPanToProducts";
|
|
2829
|
+
MetaBoxCommand["FSetCameraControlClampsCommand"] = "setCameraControlClamps";
|
|
2830
|
+
MetaBoxCommand["FResetControlClampsCommand"] = "resetControlClamps";
|
|
2831
|
+
MetaBoxCommand["FCameraSettingsCommand"] = "cameraSettings";
|
|
2832
|
+
/**
|
|
2833
|
+
@deprecated
|
|
2834
|
+
Use {@link FCameraSettingsCommand}
|
|
2835
|
+
*/
|
|
2836
|
+
MetaBoxCommand["FChangeFovCommand"] = "changeFov";
|
|
2837
|
+
MetaBoxCommand["FApplyCameraPresetCommand"] = "applyCameraPreset";
|
|
2838
|
+
MetaBoxCommand["FSetCameraTransformCommand"] = "setCameraTransform";
|
|
2839
|
+
MetaBoxCommand["FRequestCameraPresetCommand"] = "requestCameraPreset";
|
|
2840
|
+
MetaBoxCommand["FCameraRecenterCommand"] = "cameraRecenter";
|
|
2841
|
+
MetaBoxCommand["FResetZoomCommand"] = "resetZoom";
|
|
2842
|
+
/**
|
|
2843
|
+
@deprecated
|
|
2844
|
+
Use {@link FResetZoomCommand}
|
|
2845
|
+
*/
|
|
2846
|
+
MetaBoxCommand["FResetMinZoomCommand"] = "resetMinZoom";
|
|
2847
|
+
MetaBoxCommand["FApplyZoomCommand"] = "applyZoom";
|
|
2848
|
+
/**
|
|
2849
|
+
@deprecated
|
|
2850
|
+
Use {@link FApplyZoomCommand}
|
|
2851
|
+
*/
|
|
2852
|
+
MetaBoxCommand["FZoomCommand"] = "zoom";
|
|
2853
|
+
MetaBoxCommand["FAddPanelLightCommand"] = "addPanelLight";
|
|
2854
|
+
MetaBoxCommand["FUpdatePanelLightCommand"] = "updatePanelLight";
|
|
2855
|
+
MetaBoxCommand["FAddRectLightCommand"] = "addRectLight";
|
|
2856
|
+
MetaBoxCommand["FUpdateRectLightCommand"] = "updateRectLight";
|
|
2857
|
+
MetaBoxCommand["FRemoveLightCommand"] = "removeLight";
|
|
2858
|
+
MetaBoxCommand["FSetHdrCommand"] = "setHdr";
|
|
2859
|
+
MetaBoxCommand["FWeatherCommand"] = "weather";
|
|
2860
|
+
/**
|
|
2861
|
+
@deprecated
|
|
2862
|
+
Use {@link FWeatherCommand}
|
|
2863
|
+
*/
|
|
2864
|
+
MetaBoxCommand["FEnableUDSCommand"] = "enableUDS";
|
|
2865
|
+
/**
|
|
2866
|
+
@deprecated
|
|
2867
|
+
Use {@link FWeatherCommand}
|
|
2868
|
+
*/
|
|
2869
|
+
MetaBoxCommand["FTimeUDSCommand"] = "timeUDS";
|
|
2870
|
+
/**
|
|
2871
|
+
@deprecated
|
|
2872
|
+
Use {@link FWeatherCommand}
|
|
2873
|
+
*/
|
|
2874
|
+
MetaBoxCommand["FSetSunOrientationCommand"] = "setSunOrientation";
|
|
2875
|
+
MetaBoxCommand["FEnableLightModeCommand"] = "enableLightMode";
|
|
2876
|
+
MetaBoxCommand["FSetSettingsSequenceCommand"] = "setSettingsSequence";
|
|
2877
|
+
MetaBoxCommand["FInitSequenceCommand"] = "initSequence";
|
|
2878
|
+
MetaBoxCommand["FInitSequenceByObjectNameCommand"] = "initSequenceByObjectName";
|
|
2879
|
+
MetaBoxCommand["FPlaySequenceCommand"] = "playSequence";
|
|
2880
|
+
MetaBoxCommand["FJumpToSequenceCommand"] = "jumpToSequence";
|
|
2881
|
+
MetaBoxCommand["FDragSequenceCommand"] = "dragSequence";
|
|
2882
|
+
MetaBoxCommand["FPauseSequenceCommand"] = "pauseSequence";
|
|
2883
|
+
MetaBoxCommand["FStopSequenceCommand"] = "stopSequence";
|
|
2884
|
+
/**
|
|
2885
|
+
@deprecated
|
|
2886
|
+
Use {@link FPlaySequenceCommand}
|
|
2887
|
+
*/
|
|
2888
|
+
MetaBoxCommand["FResumeSequenceCommand"] = "resumeSequence";
|
|
2889
|
+
/**
|
|
2890
|
+
@deprecated
|
|
2891
|
+
Use {@link FInitSequenceCommand}, {@link FPlaySequenceCommand}
|
|
2892
|
+
*/
|
|
2893
|
+
MetaBoxCommand["FStartSequenceCommand"] = "startSequence";
|
|
2894
|
+
/**
|
|
2895
|
+
@deprecated
|
|
2896
|
+
Use {@link FTakeRenderCommand}
|
|
2897
|
+
*/
|
|
2898
|
+
MetaBoxCommand["FTakeScreenshotCommand"] = "takeScreenshot";
|
|
2899
|
+
MetaBoxCommand["FTakeRenderCommand"] = "takeRender";
|
|
2900
|
+
/**
|
|
2901
|
+
@deprecated
|
|
2902
|
+
Use {@link FTakeLayeredRenderCommand}
|
|
2903
|
+
*/
|
|
2904
|
+
MetaBoxCommand["FTakeLayeredScreenshotCommand"] = "takeLayeredScreenshot";
|
|
2905
|
+
MetaBoxCommand["FTakeLayeredRenderCommand"] = "takeLayeredRender";
|
|
2906
|
+
/**
|
|
2907
|
+
@deprecated
|
|
2908
|
+
Use {@link FTakeSpinnerRenderCommand}
|
|
2909
|
+
*/
|
|
2910
|
+
MetaBoxCommand["FTake360ScreenshotCommand"] = "take360Screenshot";
|
|
2911
|
+
/**
|
|
2912
|
+
@deprecated
|
|
2913
|
+
Use {@link FTakeSpinnerRenderCommand}
|
|
2914
|
+
*/
|
|
2915
|
+
MetaBoxCommand["FTake360RenderCommand"] = "take360Render";
|
|
2916
|
+
MetaBoxCommand["FTakeSpinnerRenderCommand"] = "takeSpinnerRender";
|
|
2917
|
+
/**
|
|
2918
|
+
@deprecated
|
|
2919
|
+
Use {@link FTakeSpinnerRenderPreviewCommand}
|
|
2920
|
+
*/
|
|
2921
|
+
MetaBoxCommand["FTake360PreviewCommand"] = "take360Preview";
|
|
2922
|
+
MetaBoxCommand["FTakeSpinnerRenderPreviewCommand"] = "takeSpinnerRenderPreview";
|
|
2923
|
+
/**
|
|
2924
|
+
@deprecated
|
|
2925
|
+
Use {@link FEnableSpinnerModeCommand}
|
|
2926
|
+
*/
|
|
2927
|
+
MetaBoxCommand["F360EnableCommand"] = "360Enable";
|
|
2928
|
+
/**
|
|
2929
|
+
@deprecated
|
|
2930
|
+
Use {@link FEnableSpinnerModeCommand}
|
|
2931
|
+
*/
|
|
2932
|
+
MetaBoxCommand["F360DisableCommand"] = "360Disable";
|
|
2933
|
+
MetaBoxCommand["FEnableSpinnerModeCommand"] = "enableSpinnerMode";
|
|
2934
|
+
MetaBoxCommand["F360VerticalRotateCommand"] = "360VerticalRotate";
|
|
2935
|
+
MetaBoxCommand["FUnDoCommand"] = "unDo";
|
|
2936
|
+
MetaBoxCommand["FReDoCommand"] = "reDo";
|
|
2937
|
+
MetaBoxCommand["FRequestSceneStateCommand"] = "requestSceneState";
|
|
2938
|
+
MetaBoxCommand["FEnableSceneStateCallbackCommand"] = "enableSceneStateCallback";
|
|
2939
|
+
/**
|
|
2940
|
+
@deprecated
|
|
2941
|
+
Use {@link FRequestSceneStateCommand}
|
|
2942
|
+
*/
|
|
2943
|
+
MetaBoxCommand["FSaveSceneStateCommand"] = "saveSceneState";
|
|
2944
|
+
MetaBoxCommand["FLoadSceneStateCommand"] = "loadSceneState";
|
|
2945
|
+
MetaBoxCommand["FStartUndoRedoChainCommand"] = "startUndoRedoChain";
|
|
2946
|
+
MetaBoxCommand["FAddUndoRedoChainCommand"] = "addUndoRedoChain";
|
|
2947
|
+
/**
|
|
2948
|
+
@deprecated
|
|
2949
|
+
Don't need anymore.
|
|
2950
|
+
*/
|
|
2951
|
+
MetaBoxCommand["FAppInitCommand"] = "appInit";
|
|
2952
|
+
MetaBoxCommand["FDebugModeCommand"] = "debugMode";
|
|
2953
|
+
MetaBoxCommand["FChangeResolutionCommand"] = "changeResolution";
|
|
2954
|
+
MetaBoxCommand["FExecuteConsoleCommandCommand"] = "executeConsoleCommand";
|
|
2955
|
+
MetaBoxCommand["FPingCommand"] = "ping";
|
|
2956
|
+
MetaBoxCommand["FRestartComposeCommand"] = "restartCompose";
|
|
2957
|
+
MetaBoxCommand["FResetSceneCommand"] = "resetScene";
|
|
2958
|
+
MetaBoxCommand["FDatasmithToPakCommand"] = "datasmithToPak";
|
|
2959
|
+
MetaBoxCommand["FMorphToPakCommand"] = "morphToPak";
|
|
2960
|
+
MetaBoxCommand["FLoopBackCommand"] = "loopBack";
|
|
2961
|
+
MetaBoxCommand["FTestCommand"] = "test";
|
|
2962
|
+
})(MetaBoxCommand || (MetaBoxCommand = {}));
|
|
2963
|
+
/**
|
|
2964
|
+
* List of deprecated commands.
|
|
2965
|
+
*/
|
|
2966
|
+
const DeprecatedCommands = [
|
|
2967
|
+
MetaBoxCommand.FLoadPaksInMemoryCommand,
|
|
2968
|
+
MetaBoxCommand.FSelectProductCommand,
|
|
2969
|
+
MetaBoxCommand.FUnLoadProductCommand,
|
|
2970
|
+
MetaBoxCommand.FRemoveProductCommand,
|
|
2971
|
+
MetaBoxCommand.FRemoveProductInSceneCommand,
|
|
2972
|
+
MetaBoxCommand.FRemoveAllProductsCommand,
|
|
2973
|
+
MetaBoxCommand.FHideLevelCommand,
|
|
2974
|
+
MetaBoxCommand.FHideAllLevelsCommand,
|
|
2975
|
+
MetaBoxCommand.FFitCommand,
|
|
2976
|
+
MetaBoxCommand.FSelectProductInSceneCommand,
|
|
2977
|
+
MetaBoxCommand.FRemoveFocusedCommand,
|
|
2978
|
+
MetaBoxCommand.FMouseSensitivityCommand,
|
|
2979
|
+
MetaBoxCommand.FMoveCameraCommand,
|
|
2980
|
+
MetaBoxCommand.FClampPanToProductCommand,
|
|
2981
|
+
MetaBoxCommand.FChangeFovCommand,
|
|
2982
|
+
MetaBoxCommand.FResetMinZoomCommand,
|
|
2983
|
+
MetaBoxCommand.FZoomCommand,
|
|
2984
|
+
MetaBoxCommand.FEnableUDSCommand,
|
|
2985
|
+
MetaBoxCommand.FTimeUDSCommand,
|
|
2986
|
+
MetaBoxCommand.FSetSunOrientationCommand,
|
|
2987
|
+
MetaBoxCommand.FResumeSequenceCommand,
|
|
2988
|
+
MetaBoxCommand.FStartSequenceCommand,
|
|
2989
|
+
MetaBoxCommand.FTakeScreenshotCommand,
|
|
2990
|
+
MetaBoxCommand.FTakeLayeredScreenshotCommand,
|
|
2991
|
+
MetaBoxCommand.FTake360ScreenshotCommand,
|
|
2992
|
+
MetaBoxCommand.FTake360RenderCommand,
|
|
2993
|
+
MetaBoxCommand.FTake360PreviewCommand,
|
|
2994
|
+
MetaBoxCommand.F360EnableCommand,
|
|
2995
|
+
MetaBoxCommand.F360DisableCommand,
|
|
2996
|
+
MetaBoxCommand.FSaveSceneStateCommand,
|
|
2997
|
+
MetaBoxCommand.FAppInitCommand,
|
|
2998
|
+
];
|
|
2999
|
+
|
|
2405
3000
|
const getResetControlClampsCommand = () => ({
|
|
2406
3001
|
command: MetaBoxCommand.FResetControlClampsCommand,
|
|
2407
3002
|
});
|
|
@@ -3916,7 +4511,7 @@ function SSInfoHandler(msg) {
|
|
|
3916
4511
|
return null;
|
|
3917
4512
|
}
|
|
3918
4513
|
|
|
3919
|
-
function InstanceReadyHandler(
|
|
4514
|
+
function InstanceReadyHandler(_) { }
|
|
3920
4515
|
|
|
3921
4516
|
function InstanceReservedHandler(msg) {
|
|
3922
4517
|
this.store.dispatch(setSignalingName({
|
|
@@ -3931,23 +4526,6 @@ function PingHandler() {
|
|
|
3931
4526
|
}));
|
|
3932
4527
|
}
|
|
3933
4528
|
|
|
3934
|
-
/*
|
|
3935
|
-
export interface RequestReservation extends InstanceMessageBase {
|
|
3936
|
-
type: 'requestReservation';
|
|
3937
|
-
}
|
|
3938
|
-
*/
|
|
3939
|
-
const OrchestrationMessageTypes = {
|
|
3940
|
-
requestReservation: 'requestReservation',
|
|
3941
|
-
instanceReady: 'instanceReady',
|
|
3942
|
-
instanceReserved: 'instanceReserved',
|
|
3943
|
-
ssInfo: 'ssInfo',
|
|
3944
|
-
playerCount: 'playerCount',
|
|
3945
|
-
answer: 'answer',
|
|
3946
|
-
iceCandidate: 'iceCandidate',
|
|
3947
|
-
ping: 'ping',
|
|
3948
|
-
config: 'config',
|
|
3949
|
-
};
|
|
3950
|
-
|
|
3951
4529
|
function OnOpenHandler() {
|
|
3952
4530
|
this.stopRetryTimer();
|
|
3953
4531
|
this.store.dispatch(setCirrusConnected());
|
|
@@ -4098,17 +4676,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImpor
|
|
|
4098
4676
|
type: Injectable
|
|
4099
4677
|
}] });
|
|
4100
4678
|
|
|
4101
|
-
const WSCloseCode_NORMAL_CLOSURE = 3000;
|
|
4102
|
-
const WSCloseCode_NORMAL_AFK_TIMEOUT = 3001;
|
|
4103
|
-
const WSCloseCode_NORMAL_MANUAL_DISCONNECT = 3002;
|
|
4104
|
-
const WSCloseCode_NORMAL_CIRRUS_CLOSED = 3003;
|
|
4105
|
-
const WSCloseCodes = [
|
|
4106
|
-
WSCloseCode_NORMAL_CLOSURE,
|
|
4107
|
-
WSCloseCode_NORMAL_AFK_TIMEOUT,
|
|
4108
|
-
WSCloseCode_NORMAL_MANUAL_DISCONNECT,
|
|
4109
|
-
WSCloseCode_NORMAL_CIRRUS_CLOSED,
|
|
4110
|
-
];
|
|
4111
|
-
|
|
4112
4679
|
class SignallingService extends SubService {
|
|
4113
4680
|
constructor() {
|
|
4114
4681
|
super();
|
|
@@ -4861,8 +5428,10 @@ const deepEqual = (a, b) => {
|
|
|
4861
5428
|
if (a === b)
|
|
4862
5429
|
return true;
|
|
4863
5430
|
// must both be objects (and not null)?
|
|
4864
|
-
if (typeof a === 'object' &&
|
|
4865
|
-
|
|
5431
|
+
if (typeof a === 'object' &&
|
|
5432
|
+
a !== null &&
|
|
5433
|
+
typeof b === 'object' &&
|
|
5434
|
+
b !== null) {
|
|
4866
5435
|
// arrays?
|
|
4867
5436
|
if (Array.isArray(a) || Array.isArray(b)) {
|
|
4868
5437
|
if (!Array.isArray(a) || !Array.isArray(b) || a.length !== b.length) {
|
|
@@ -6004,9 +6573,7 @@ class UnrealSceneComponent {
|
|
|
6004
6573
|
}
|
|
6005
6574
|
ngOnDestroy() {
|
|
6006
6575
|
this.commandsSender.destroy();
|
|
6007
|
-
// eslint-disable-next-line @ngrx/avoid-dispatching-multiple-actions-sequentially
|
|
6008
6576
|
this.store.dispatch(destroyConnectionsAndResetState());
|
|
6009
|
-
// eslint-disable-next-line @ngrx/avoid-dispatching-multiple-actions-sequentially
|
|
6010
6577
|
this.store.dispatch(resetUnrealStateAction());
|
|
6011
6578
|
}
|
|
6012
6579
|
adaptVideo(size) {
|
|
@@ -6125,9 +6692,7 @@ class VideoLockerComponent {
|
|
|
6125
6692
|
this.videoIntroSrc$ = this.store.select(unrealFeature.selectVideoIntroSrc);
|
|
6126
6693
|
this.imageIntroSrc$ = this.store
|
|
6127
6694
|
.select(unrealFeature.selectImageIntroSrc)
|
|
6128
|
-
.pipe(
|
|
6129
|
-
// eslint-disable-next-line @ngrx/avoid-mapping-selectors
|
|
6130
|
-
map$1((src) => {
|
|
6695
|
+
.pipe(map$1((src) => {
|
|
6131
6696
|
// TODO need for demos site and need to delete this and move to demos
|
|
6132
6697
|
if (!src) {
|
|
6133
6698
|
return null;
|
|
@@ -6210,17 +6775,9 @@ const UNREAL_PROVIDERS = [
|
|
|
6210
6775
|
UNREAL_SERVICES,
|
|
6211
6776
|
];
|
|
6212
6777
|
|
|
6213
|
-
const MixPanelEvents = {
|
|
6214
|
-
pixelstreaming_end: 'pixelstreaming_end',
|
|
6215
|
-
pixelstreaming_start: 'pixelstreaming_start',
|
|
6216
|
-
render_request: 'render_request',
|
|
6217
|
-
custom_click: 'custom_click',
|
|
6218
|
-
route_change: 'route_change',
|
|
6219
|
-
};
|
|
6220
|
-
|
|
6221
6778
|
/**
|
|
6222
6779
|
* Generated bundle index. Do not edit.
|
|
6223
6780
|
*/
|
|
6224
6781
|
|
|
6225
|
-
export { AFKService, AfkRestartScreenLockerComponent, AggregatorService, AnswerHandler, CONSOLE_COMMAND_DISABLE_MESSAGES, CONSOLE_COMMAND_ENABLE_MESSAGES, CONSOLE_COMMAND_PIXEL_QUALITY, ClickableOverlayComponent, CommandTelemetryService, ConfigHandler, ConsoleExtensionsService, DATA_CHANNEL_CONNECTION_TIMEOUT, DEBOUNCE_TO_MANY_RESIZE_CALLS, DEFAULT_PDF_TIMEOUT, DEFAULT_RENDER_SPINNER_TIMEOUT, DEFAULT_SHOWCASE_TIMEOUT, DEFAULT_TIMEOUT_PERIOD, DEFAULT_WARN_TIMEOUT, DataFlowMonitor, DevModeService, DisconnectReason, EControlSchemeType, EMessageType, EToClientMessageType, FULL_HD_HEIGHT, FULL_HD_WIDTH, FilterSettingsComponent, FreezeFrameComponent, FreezeFrameService, IceCandidateHandler, ImageCaptureService, InputOptions, InputService, InstanceReadyHandler, InstanceReservedHandler, KalmanFilter1D, LatencyTimings, LowBandwidthDetectorComponent, LowBandwidthModalComponent, MINIMAL_FPS, MIX_PANEL, MixPanelEvents, MixPanelService, MouseButton, MouseButtonsMask, OnCloseHandler, OnErrorHandler, OnMessageHandler, OnOpenHandler, OrchestrationMessageTypes, PdfComponent, PingHandler, PlayerCountHandler, RegionsPingService, ResetTelemetry, SAME_SIZE_THRESHOLD, SSInfoHandler, STREAMING_VIDEO_ID, SafePipe, ShowCaseComponent, SignallingService, SpecialKeyCodes, StatGraphComponent, StreamStatusTelemetryService, SubService, TelemetryStart, TelemetryStop, UNREAL_CONFIG, UNREAL_PROVIDERS, UnrealCommunicatorService, UnrealEffects, UnrealInternalSignalEvents, UnrealSceneComponent, UnrealStatusMessage, VideoLockerComponent, VideoRecorder, VideoService, VideoStatsComponent, VideoStreamStatusService, WSCloseCode_NORMAL_AFK_TIMEOUT, WSCloseCode_NORMAL_CIRRUS_CLOSED, WSCloseCode_NORMAL_CLOSURE, WSCloseCode_NORMAL_MANUAL_DISCONNECT, WSCloseCodes, WS_OPEN_STATE, WS_TIMEOUT, WebRtcPlayerService, WebrtcErrorModalComponent, alignProductsToPlaneCommand, changeLowBandwidth, changeStatusMainVideoOnScene, changeStreamResolutionAction, changeStreamResolutionSuccessAction, clampAndKeepMaxPercents, clampPanToProductsCommand, commandCompleted, commandStarted, decodeData, destroyConnectionsAndResetState, destroyRemoteConnections, dispatchResize, filteredLogs, floatToSmoothPercents, forceResizeUnrealVideo, fromResizeObserver, fromSignal, fromUnrealCallBackSignal, getActiveUrl, getApplyCameraPresetCommand, getApplyZoomCommand, getCameraBoxCommand, getCameraRecenterCommand, getCameraSettingsCommand, getChangeGizmoTypeCommand, getChangeResolutionCommand, getClickSnapCommand, getControlSensitivityCommand, getDebugModeCommand, getDragCommand, getDragSequenceCommand, getDropCommand, getEnableComposureCommand, getEnableControlsCommand, getEnableSpinnerModeCommand, getEnableTeleportCommand, getExecuteConsoleCommand, getFitToObjectsCommand, getFreezeFrameCommand, getImageFromVideoStream, getInitSequenceByObjectNameCommand, getJumpToSequenceCommand, getLoadLevelCommand, getLoadProductCommand, getLoadSceneStateCommand, getLoopBackCommand, getMoveSelectedCommand, getPauseSequenceCommand, getPdfAction, getPdfActionFinalize, getPdfActionSuccess, getPlaySequenceCommand, getRequestCameraPresetCommand, getResetControlClampsCommand, getRotateSelectedCommand, getRtcErrorMessage, getSelectProductByObjectNameCommand, getSetCameraControlClampsCommand, getSetControlCameraModeCommand, getSetFpsCommand, getSetMaterialCommand, getSetPawnMovementModeCommand, getSetSettingsSequenceCommand, getStopSequenceCommand, getTakeRenderCommand, getTakeSpinnerRenderCommand, getTakeSpinnerRenderPreviewCommand, getUnLoadAllProductsCommand, getUnLoadProductByObjectNameCommand, getUnselectAllProductsCommand, getWeatherCommand, initShowcase, initSignalling, initialState$2 as initialState, mapQpToQuality, observeCommandResponse, playPauseShowcase, removeExileCommands, resetAfk, resetAfkAction, resetConfig, resetIntroSrc, resetUnrealState, resetUnrealStateAction, resetWarnTimeout, selectCommandProgress, selectCommandsInProgress, selectFreezeFrameCombinedDataUrl, selectFreezeFrameDataUrl, selectFreezeFrameDataUrlFromVideo, selectFreezeFrameProgressMessageFromVideo, selectIsAutostart, selectIsFreezeFrameLoading, selectIsShowShowcase, selectIsVideoPlayingAndDataChannelConnected, selectLastCommandInProgress, selectLoaderCommands, selectMatchUrls, selectShowLoader, selectShowReconnectPopup, selectShowcaseIsInit, selectShowcaseIsPauseStatus, selectShowcaseIsPlayStatus, selectShowcaseIsPlaying, selectShowcaseIsStopped, selectSignalingParameters, selectStreamConfig, selectTotalProgress, selectWarnTimeout, selectWsUrl, sendSignal, setAwsInstance, setCirrusConnected, setCirrusDisconnected, setConfig, setDataChannelConnected, setErrorMessage, setEstablishingConnection, setFreezeFrame, setFreezeFrameFromVideo, setIntroImageSrc, setIntroVideoSrc, setLoadingImageSrc, setLoopBackCommandIsCompleted, setMaxFps, setProductsLocationCommand, setSignalingName, setStatusMessage, setStatusPercentSignallingServer, setStreamClientCompanyId, setStreamViewId, setUnrealVersion, setViewportReady, showUnrealErrorMessage, stopShowcase, unLoadAllLevelsCommand, unrealFeature, unrealReducer, updateCirrusInfo };
|
|
6782
|
+
export { AFKService, AfkRestartScreenLockerComponent, AggregatorService, AnswerHandler, CONSOLE_COMMAND_DISABLE_MESSAGES, CONSOLE_COMMAND_ENABLE_MESSAGES, CONSOLE_COMMAND_PIXEL_QUALITY, ClickableOverlayComponent, CommandTelemetryService, ConfigHandler, ConsoleExtensionsService, DATA_CHANNEL_CONNECTION_TIMEOUT, DEBOUNCE_TO_MANY_RESIZE_CALLS, DEFAULT_PDF_TIMEOUT, DEFAULT_RENDER_SPINNER_TIMEOUT, DEFAULT_SHOWCASE_TIMEOUT, DEFAULT_TIMEOUT_PERIOD, DEFAULT_WARN_TIMEOUT, DataFlowMonitor, DeprecatedCommands, DevModeService, DisconnectReason, EAlignment, EAppType, EAssetType, EControlMode, EControlSchemeType, ECurve, EDimensionType, EDlssMode, EFitMethod, EGizmoType, ELightMode, EMeasureAxisZPosition, EMessageType, EMovementAllowance, EPaddingUnit, EPawnMovementMode, ERectLightType, ESceneItemType, ESequenceLoopBehavior, EToClientMessageType, FULL_HD_HEIGHT, FULL_HD_WIDTH, FilterSettingsComponent, FreezeFrameComponent, FreezeFrameService, IceCandidateHandler, ImageCaptureService, InputOptions, InputService, InstanceReadyHandler, InstanceReservedHandler, KalmanFilter1D, LatencyTimings, LowBandwidthDetectorComponent, LowBandwidthModalComponent, MINIMAL_FPS, MIX_PANEL, MetaBoxCommand, MixPanelEvents, MixPanelService, MouseButton, MouseButtonsMask, OnCloseHandler, OnErrorHandler, OnMessageHandler, OnOpenHandler, OrchestrationMessageTypes, PdfComponent, PingHandler, PlayerCountHandler, RegionsPingService, ResetTelemetry, SAME_SIZE_THRESHOLD, SSInfoHandler, STREAMING_VIDEO_ID, SafePipe, ShowCaseComponent, SignallingService, SpecialKeyCodes, StatGraphComponent, StreamStatusTelemetryService, SubService, TelemetryStart, TelemetryStop, UNREAL_CONFIG, UNREAL_PROVIDERS, UnrealCommunicatorService, UnrealEffects, UnrealInternalSignalEvents, UnrealSceneComponent, UnrealStatusMessage, VideoLockerComponent, VideoRecorder, VideoService, VideoStatsComponent, VideoStreamStatusService, WSCloseCode_NORMAL_AFK_TIMEOUT, WSCloseCode_NORMAL_CIRRUS_CLOSED, WSCloseCode_NORMAL_CLOSURE, WSCloseCode_NORMAL_MANUAL_DISCONNECT, WSCloseCodes, WS_OPEN_STATE, WS_TIMEOUT, WebRtcPlayerService, WebrtcErrorModalComponent, alignProductsToPlaneCommand, changeLowBandwidth, changeStatusMainVideoOnScene, changeStreamResolutionAction, changeStreamResolutionSuccessAction, clampAndKeepMaxPercents, clampPanToProductsCommand, commandCompleted, commandStarted, decodeData, destroyConnectionsAndResetState, destroyRemoteConnections, dispatchResize, filteredLogs, floatToSmoothPercents, forceResizeUnrealVideo, fromResizeObserver, fromSignal, fromUnrealCallBackSignal, getActiveUrl, getApplyCameraPresetCommand, getApplyZoomCommand, getCameraBoxCommand, getCameraRecenterCommand, getCameraSettingsCommand, getChangeGizmoTypeCommand, getChangeResolutionCommand, getClickSnapCommand, getControlSensitivityCommand, getDebugModeCommand, getDragCommand, getDragSequenceCommand, getDropCommand, getEnableComposureCommand, getEnableControlsCommand, getEnableSpinnerModeCommand, getEnableTeleportCommand, getExecuteConsoleCommand, getFitToObjectsCommand, getFreezeFrameCommand, getImageFromVideoStream, getInitSequenceByObjectNameCommand, getJumpToSequenceCommand, getLoadLevelCommand, getLoadProductCommand, getLoadSceneStateCommand, getLoopBackCommand, getMoveSelectedCommand, getPauseSequenceCommand, getPdfAction, getPdfActionFinalize, getPdfActionSuccess, getPlaySequenceCommand, getRequestCameraPresetCommand, getResetControlClampsCommand, getRotateSelectedCommand, getRtcErrorMessage, getSelectProductByObjectNameCommand, getSetCameraControlClampsCommand, getSetControlCameraModeCommand, getSetFpsCommand, getSetMaterialCommand, getSetPawnMovementModeCommand, getSetSettingsSequenceCommand, getStopSequenceCommand, getTakeRenderCommand, getTakeSpinnerRenderCommand, getTakeSpinnerRenderPreviewCommand, getUnLoadAllProductsCommand, getUnLoadProductByObjectNameCommand, getUnselectAllProductsCommand, getWeatherCommand, initShowcase, initSignalling, initialState$2 as initialState, mapQpToQuality, observeCommandResponse, playPauseShowcase, removeExileCommands, resetAfk, resetAfkAction, resetConfig, resetIntroSrc, resetUnrealState, resetUnrealStateAction, resetWarnTimeout, selectCommandProgress, selectCommandsInProgress, selectFreezeFrameCombinedDataUrl, selectFreezeFrameDataUrl, selectFreezeFrameDataUrlFromVideo, selectFreezeFrameProgressMessageFromVideo, selectIsAutostart, selectIsFreezeFrameLoading, selectIsShowShowcase, selectIsVideoPlayingAndDataChannelConnected, selectLastCommandInProgress, selectLoaderCommands, selectMatchUrls, selectShowLoader, selectShowReconnectPopup, selectShowcaseIsInit, selectShowcaseIsPauseStatus, selectShowcaseIsPlayStatus, selectShowcaseIsPlaying, selectShowcaseIsStopped, selectSignalingParameters, selectStreamConfig, selectTotalProgress, selectWarnTimeout, selectWsUrl, sendSignal, setAwsInstance, setCirrusConnected, setCirrusDisconnected, setConfig, setDataChannelConnected, setErrorMessage, setEstablishingConnection, setFreezeFrame, setFreezeFrameFromVideo, setIntroImageSrc, setIntroVideoSrc, setLoadingImageSrc, setLoopBackCommandIsCompleted, setMaxFps, setProductsLocationCommand, setSignalingName, setStatusMessage, setStatusPercentSignallingServer, setStreamClientCompanyId, setStreamViewId, setUnrealVersion, setViewportReady, showUnrealErrorMessage, stopShowcase, unLoadAllLevelsCommand, unrealFeature, unrealReducer, updateCirrusInfo };
|
|
6226
6783
|
//# sourceMappingURL=3dsource-angular-unreal-module.mjs.map
|