@3dsource/angular-unreal-module 0.0.76 → 0.0.77-dev.1
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
|
@@ -71,7 +71,7 @@ declare class StatGraphComponent implements AfterViewInit {
|
|
|
71
71
|
static ɵcmp: i0.ɵɵComponentDeclaration<StatGraphComponent, "app-stat-graph", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "tickStep": { "alias": "tickStep"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "dataTick": { "alias": "dataTick"; "required": false; }; }, {}, never, never, true, never>;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
declare class UnrealSceneComponent implements AfterViewInit {
|
|
74
|
+
declare class UnrealSceneComponent implements AfterViewInit, OnInit {
|
|
75
75
|
isStudio: i0.InputSignal<boolean>;
|
|
76
76
|
useContainerAsSizeProvider: i0.InputSignal<boolean>;
|
|
77
77
|
studioResolutionSize: i0.InputSignal<{
|
|
@@ -87,6 +87,9 @@ declare class UnrealSceneComponent implements AfterViewInit {
|
|
|
87
87
|
private width;
|
|
88
88
|
private height;
|
|
89
89
|
private store;
|
|
90
|
+
private streamStatusTelemetryService;
|
|
91
|
+
private aggregatorService;
|
|
92
|
+
private inputService;
|
|
90
93
|
readonly isDevMode: boolean;
|
|
91
94
|
readonly lightMode: i0.Signal<boolean>;
|
|
92
95
|
private isFreezeFrameLoading;
|
|
@@ -99,6 +102,7 @@ declare class UnrealSceneComponent implements AfterViewInit {
|
|
|
99
102
|
onMouseOver(): void;
|
|
100
103
|
onMouseOut(): void;
|
|
101
104
|
_destroy: () => void;
|
|
105
|
+
ngOnInit(): void;
|
|
102
106
|
ngAfterViewInit(): void;
|
|
103
107
|
private listenResizeValues;
|
|
104
108
|
private adaptVideo;
|
|
@@ -534,7 +538,9 @@ declare class InputService extends SubService {
|
|
|
534
538
|
maxByteValue: number;
|
|
535
539
|
fingers: number[];
|
|
536
540
|
private offsetParams;
|
|
537
|
-
|
|
541
|
+
constructor();
|
|
542
|
+
protected init(): void;
|
|
543
|
+
fakeInit(): void;
|
|
538
544
|
useKeyboardKeys(keys: IKeyCode[]): void;
|
|
539
545
|
private setup;
|
|
540
546
|
/**
|
|
@@ -752,6 +758,8 @@ declare class UnrealCommunicatorService {
|
|
|
752
758
|
private webRtcPlayerService;
|
|
753
759
|
private videoService;
|
|
754
760
|
private destroy$;
|
|
761
|
+
private afkService;
|
|
762
|
+
private consoleExtensionsService;
|
|
755
763
|
private cirrusConnected;
|
|
756
764
|
constructor();
|
|
757
765
|
protected init(): void;
|
|
@@ -767,7 +775,7 @@ declare class UnrealCommunicatorService {
|
|
|
767
775
|
"{ ConsoleCommand: <string> }"
|
|
768
776
|
|
|
769
777
|
2. A command to change the resolution to the given width and height.
|
|
770
|
-
"{ Resolution.Width: <value>, Resolution.Height: <value> }
|
|
778
|
+
"{ Resolution.Width: <value>, Resolution.Height: <value> }"
|
|
771
779
|
*/
|
|
772
780
|
emitCommand(descriptor: MetaBoxCommandPacket): void;
|
|
773
781
|
sendInputData(data: ArrayBuffer): void;
|
|
@@ -1290,17 +1298,10 @@ declare class UnrealEffects {
|
|
|
1290
1298
|
private unrealInitialConfig;
|
|
1291
1299
|
private webRtcPlayerService;
|
|
1292
1300
|
private commandsSender;
|
|
1293
|
-
private freezeFrame;
|
|
1294
|
-
private inputService;
|
|
1295
1301
|
private signallingService;
|
|
1296
1302
|
private videoService;
|
|
1297
|
-
private afkService;
|
|
1298
|
-
private consoleExtensions;
|
|
1299
|
-
private streamStatusTelemetryService;
|
|
1300
|
-
private aggregatorService;
|
|
1301
1303
|
private dataChannelConnectionTimeout;
|
|
1302
1304
|
private connectionCompleted$;
|
|
1303
|
-
constructor();
|
|
1304
1305
|
disconnectReasonHandling$: rxjs.Observable<{
|
|
1305
1306
|
reason: _3dsource_angular_unreal_module.DisconnectReasonType;
|
|
1306
1307
|
} & _ngrx_store.Action<string>> & _ngrx_effects.CreateEffectMetadata;
|