@3dsource/angular-unreal-module 0.0.26 → 0.0.28
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.
|
@@ -11,9 +11,13 @@ export declare class UnrealSceneComponent implements AfterViewInit, OnInit, OnDe
|
|
|
11
11
|
width: number;
|
|
12
12
|
height: number;
|
|
13
13
|
}>;
|
|
14
|
+
container: ElementRef;
|
|
15
|
+
changeMouseOverScene: import("@angular/core").OutputEmitterRef<boolean>;
|
|
14
16
|
private width;
|
|
15
17
|
private height;
|
|
16
18
|
private store;
|
|
19
|
+
lightMode: import("@angular/core").Signal<boolean | undefined>;
|
|
20
|
+
isFreezeFrameLoading: import("@angular/core").Signal<boolean | undefined>;
|
|
17
21
|
private aggregatorService;
|
|
18
22
|
private commandsSender;
|
|
19
23
|
private inputService;
|
|
@@ -22,17 +26,14 @@ export declare class UnrealSceneComponent implements AfterViewInit, OnInit, OnDe
|
|
|
22
26
|
private streamTelemetryService;
|
|
23
27
|
private element;
|
|
24
28
|
private destroyRef;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
container: ElementRef;
|
|
28
|
-
changeMouseOverScene: import("@angular/core").OutputEmitterRef<boolean>;
|
|
29
|
+
private get resizeValues();
|
|
30
|
+
private get pixelRatio();
|
|
29
31
|
onMouseOver(): void;
|
|
30
32
|
onMouseOut(): void;
|
|
31
33
|
ngOnInit(): void;
|
|
32
34
|
ngAfterViewInit(): void;
|
|
33
35
|
ngOnDestroy(): void;
|
|
34
36
|
private adaptVideo;
|
|
35
|
-
private get resizeValues();
|
|
36
37
|
/**
|
|
37
38
|
* This method calculates the dimensions for resizing a layout in a configurator stream.
|
|
38
39
|
* It takes into account the pixel ratio of the device's screen and the orientation of the layout.
|
|
@@ -44,7 +45,6 @@ export declare class UnrealSceneComponent implements AfterViewInit, OnInit, OnDe
|
|
|
44
45
|
private getResizeValuesUniversal;
|
|
45
46
|
private getResizeValues;
|
|
46
47
|
private sendResize;
|
|
47
|
-
private get pixelRatio();
|
|
48
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<UnrealSceneComponent, never>;
|
|
49
49
|
static ɵcmp: i0.ɵɵComponentDeclaration<UnrealSceneComponent, "app-unreal-scene", never, { "isStudio": { "alias": "isStudio"; "required": false; "isSignal": true; }; "useContainerAsSizeProvider": { "alias": "useContainerAsSizeProvider"; "required": false; "isSignal": true; }; "studioResolutionSize": { "alias": "studioResolutionSize"; "required": false; "isSignal": true; }; }, { "changeMouseOverScene": "changeMouseOverScene"; }, never, ["app-video-locker", "app-pdf", "app-show-case", "app-low-bandwidth-detector"], true, never>;
|
|
50
50
|
}
|