@3dsource/angular-unreal-module 0.0.77-dev.0 → 0.0.77-dev.2
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<{
|
|
@@ -102,6 +102,7 @@ declare class UnrealSceneComponent implements AfterViewInit {
|
|
|
102
102
|
onMouseOver(): void;
|
|
103
103
|
onMouseOut(): void;
|
|
104
104
|
_destroy: () => void;
|
|
105
|
+
ngOnInit(): void;
|
|
105
106
|
ngAfterViewInit(): void;
|
|
106
107
|
private listenResizeValues;
|
|
107
108
|
private adaptVideo;
|
|
@@ -537,7 +538,9 @@ declare class InputService extends SubService {
|
|
|
537
538
|
maxByteValue: number;
|
|
538
539
|
fingers: number[];
|
|
539
540
|
private offsetParams;
|
|
540
|
-
|
|
541
|
+
constructor();
|
|
542
|
+
protected init(): void;
|
|
543
|
+
fakeInit(): void;
|
|
541
544
|
useKeyboardKeys(keys: IKeyCode[]): void;
|
|
542
545
|
private setup;
|
|
543
546
|
/**
|
|
@@ -772,7 +775,7 @@ declare class UnrealCommunicatorService {
|
|
|
772
775
|
"{ ConsoleCommand: <string> }"
|
|
773
776
|
|
|
774
777
|
2. A command to change the resolution to the given width and height.
|
|
775
|
-
"{ Resolution.Width: <value>, Resolution.Height: <value> }
|
|
778
|
+
"{ Resolution.Width: <value>, Resolution.Height: <value> }"
|
|
776
779
|
*/
|
|
777
780
|
emitCommand(descriptor: MetaBoxCommandPacket): void;
|
|
778
781
|
sendInputData(data: ArrayBuffer): void;
|