@3dsource/angular-unreal-module 0.0.78 → 0.0.79
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/index.d.ts
CHANGED
|
@@ -87,9 +87,7 @@ declare class UnrealSceneComponent {
|
|
|
87
87
|
private width;
|
|
88
88
|
private height;
|
|
89
89
|
private store;
|
|
90
|
-
private
|
|
91
|
-
private aggregatorService;
|
|
92
|
-
private inputService;
|
|
90
|
+
private isExistMatchUrls;
|
|
93
91
|
readonly isDevMode: boolean;
|
|
94
92
|
readonly lightMode: i0.Signal<boolean>;
|
|
95
93
|
private isFreezeFrameLoading;
|
|
@@ -364,7 +362,8 @@ declare class AFKService extends SubService {
|
|
|
364
362
|
private countdownTimer;
|
|
365
363
|
private selectWarnTimeout;
|
|
366
364
|
private isViewportReady;
|
|
367
|
-
|
|
365
|
+
constructor();
|
|
366
|
+
protected init(): void;
|
|
368
367
|
private hideOverlay;
|
|
369
368
|
/**
|
|
370
369
|
* Start a timer which when elapsed will warn the user they are inactive.
|
|
@@ -404,7 +403,8 @@ declare class AggregatorService extends SubService {
|
|
|
404
403
|
* Never called for now
|
|
405
404
|
*/
|
|
406
405
|
private readonly destroy$;
|
|
407
|
-
|
|
406
|
+
constructor();
|
|
407
|
+
protected init(): void;
|
|
408
408
|
protected listenWebRTC(): void;
|
|
409
409
|
protected initialize(): void;
|
|
410
410
|
private addResponseEventListener;
|
|
@@ -491,7 +491,8 @@ declare function ResetTelemetry(): void;
|
|
|
491
491
|
|
|
492
492
|
declare class ConsoleExtensionsService extends SubService {
|
|
493
493
|
#private;
|
|
494
|
-
|
|
494
|
+
constructor();
|
|
495
|
+
protected init(): void;
|
|
495
496
|
private unrealHelp;
|
|
496
497
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConsoleExtensionsService, never>;
|
|
497
498
|
static ɵprov: i0.ɵɵInjectableDeclaration<ConsoleExtensionsService>;
|
|
@@ -509,7 +510,8 @@ declare class FreezeFrameService extends SubService {
|
|
|
509
510
|
private size;
|
|
510
511
|
private jpeg;
|
|
511
512
|
private freezeFrameOverlay;
|
|
512
|
-
|
|
513
|
+
constructor();
|
|
514
|
+
protected init(): void;
|
|
513
515
|
setData(view: Uint8Array): void;
|
|
514
516
|
private dispatchInProgress;
|
|
515
517
|
start(view: Uint8Array): void;
|
|
@@ -536,7 +538,8 @@ declare class InputService extends SubService {
|
|
|
536
538
|
maxByteValue: number;
|
|
537
539
|
fingers: number[];
|
|
538
540
|
private offsetParams;
|
|
539
|
-
|
|
541
|
+
constructor();
|
|
542
|
+
protected init(): void;
|
|
540
543
|
useKeyboardKeys(keys: IKeyCode[]): void;
|
|
541
544
|
private setup;
|
|
542
545
|
/**
|
|
@@ -740,7 +743,8 @@ declare class SignallingService extends SubService {
|
|
|
740
743
|
|
|
741
744
|
declare class StreamStatusTelemetryService {
|
|
742
745
|
#private;
|
|
743
|
-
|
|
746
|
+
constructor();
|
|
747
|
+
protected init(): void;
|
|
744
748
|
private mapEventData;
|
|
745
749
|
private trackEventToMixPanel;
|
|
746
750
|
static ɵfac: i0.ɵɵFactoryDeclaration<StreamStatusTelemetryService, never>;
|
|
@@ -754,8 +758,6 @@ declare class UnrealCommunicatorService {
|
|
|
754
758
|
private webRtcPlayerService;
|
|
755
759
|
private videoService;
|
|
756
760
|
private destroy$;
|
|
757
|
-
private afkService;
|
|
758
|
-
private consoleExtensionsService;
|
|
759
761
|
private cirrusConnected;
|
|
760
762
|
constructor();
|
|
761
763
|
protected init(): void;
|
|
@@ -830,7 +832,7 @@ declare class WebRtcPlayerService extends SubService {
|
|
|
830
832
|
private forceMonoAudio;
|
|
831
833
|
private dcClient;
|
|
832
834
|
constructor();
|
|
833
|
-
|
|
835
|
+
protected init(): void;
|
|
834
836
|
private createWebRtcOffer;
|
|
835
837
|
private createDataChannel;
|
|
836
838
|
private receiveAnswer;
|
|
@@ -861,6 +863,7 @@ declare class AfkPlaywrightService extends AFKService {
|
|
|
861
863
|
|
|
862
864
|
declare class SignallingPlaywrightService extends SignallingService {
|
|
863
865
|
constructor();
|
|
866
|
+
init(): void;
|
|
864
867
|
connectToSignaling(): rxjs.Observable<never>;
|
|
865
868
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignallingPlaywrightService, never>;
|
|
866
869
|
static ɵprov: i0.ɵɵInjectableDeclaration<SignallingPlaywrightService>;
|
|
@@ -1348,9 +1351,6 @@ declare class UnrealEffects {
|
|
|
1348
1351
|
startStream$: rxjs.Observable<{
|
|
1349
1352
|
resetDisconnectionReason: boolean;
|
|
1350
1353
|
} & _ngrx_store.Action<string>> & _ngrx_effects.CreateEffectMetadata;
|
|
1351
|
-
setMatchUrls$: rxjs.Observable<{
|
|
1352
|
-
resetDisconnectionReason: boolean;
|
|
1353
|
-
} & _ngrx_store.Action<string>> & _ngrx_effects.CreateEffectMetadata;
|
|
1354
1354
|
listenUnrealCallbackByInitSignalling$: rxjs.Observable<{
|
|
1355
1355
|
id: string;
|
|
1356
1356
|
} & _ngrx_store.Action<string>> & _ngrx_effects.CreateEffectMetadata;
|
|
@@ -1947,7 +1947,7 @@ declare class LowBandwidthDetectorComponent implements OnInit {
|
|
|
1947
1947
|
private readonly dialog;
|
|
1948
1948
|
private readonly destroyRef;
|
|
1949
1949
|
private readonly videoService;
|
|
1950
|
-
readonly
|
|
1950
|
+
readonly isDevMode: boolean;
|
|
1951
1951
|
private readonly viewportReady$;
|
|
1952
1952
|
private readonly isLowBandwidth$;
|
|
1953
1953
|
private readonly lowBandwidthTrigger$;
|