@3dsource/angular-unreal-module 0.0.84-dev.0 → 0.0.85
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
|
@@ -524,6 +524,7 @@ declare class FreezeFrameService extends SubService {
|
|
|
524
524
|
declare class InputService extends SubService {
|
|
525
525
|
private commandsSender;
|
|
526
526
|
private isDevMode;
|
|
527
|
+
private videoService;
|
|
527
528
|
readonly defaultKeys: (17 | 37 | 38 | 39 | 40 | 46 | 65 | 68 | 83 | 87 | 107 | 109 | 187 | 189)[];
|
|
528
529
|
private availableKeys;
|
|
529
530
|
private options;
|
|
@@ -532,7 +533,6 @@ declare class InputService extends SubService {
|
|
|
532
533
|
private normalizeAndQuantizeUnsigned;
|
|
533
534
|
private unQuantizeAndDenormalizeUnsigned;
|
|
534
535
|
private normalizeAndQuantizeSigned;
|
|
535
|
-
video: HTMLVideoElement;
|
|
536
536
|
videoBoundingRect: DOMRect;
|
|
537
537
|
fingerIds: Map<any, any>;
|
|
538
538
|
maxByteValue: number;
|
|
@@ -541,6 +541,7 @@ declare class InputService extends SubService {
|
|
|
541
541
|
constructor();
|
|
542
542
|
protected init(): void;
|
|
543
543
|
useKeyboardKeys(keys: IKeyCode[]): void;
|
|
544
|
+
get video(): HTMLVideoElement | null;
|
|
544
545
|
private setup;
|
|
545
546
|
/**
|
|
546
547
|
* We use `object-fit: cover` on the video element. Since the video can have
|
|
@@ -756,7 +757,6 @@ declare class UnrealCommunicatorService {
|
|
|
756
757
|
private commandTelemetryService;
|
|
757
758
|
private freezeFrameService;
|
|
758
759
|
private webRtcPlayerService;
|
|
759
|
-
private inputService;
|
|
760
760
|
private videoService;
|
|
761
761
|
private destroy$;
|
|
762
762
|
private cirrusConnected;
|