@3dsource/angular-unreal-module 0.0.16 → 0.0.18
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/LICENSE +14 -0
- package/README.md +35 -2
- package/fesm2022/3dsource-angular-unreal-module.mjs +3565 -3555
- package/fesm2022/3dsource-angular-unreal-module.mjs.map +1 -1
- package/lib/components/low-bandwidth-indicator/low-bandwidth-detector.component.d.ts +3 -3
- package/lib/components/screen-locker/afk-restart-screen-locker.component.d.ts +2 -2
- package/lib/components/unreal-status/unreal-status.component.d.ts +1 -1
- package/lib/constants/unreal.constant.d.ts +1 -0
- package/lib/helpers/DataFlowMonitor.d.ts +1 -1
- package/lib/helpers/EventWrapper.d.ts +1 -1
- package/lib/helpers/FromStreamerHandlers/AnswerHandler.d.ts +2 -2
- package/lib/helpers/FromStreamerHandlers/ConfigHandler.d.ts +2 -2
- package/lib/helpers/FromStreamerHandlers/IceCandidateHandler.d.ts +1 -1
- package/lib/helpers/FromStreamerHandlers/InstanceReadyHandler.d.ts +2 -2
- package/lib/helpers/FromStreamerHandlers/InstanceReservedHandler.d.ts +2 -2
- package/lib/helpers/FromStreamerHandlers/PingHandler.d.ts +1 -1
- package/lib/helpers/FromStreamerHandlers/PlayerCountHandler.d.ts +2 -2
- package/lib/helpers/FromStreamerHandlers/SSInfoHandler.d.ts +2 -2
- package/lib/helpers/TouchEmulator.d.ts +1 -1
- package/lib/helpers/WsHandlers/OnCloseHandler.d.ts +1 -1
- package/lib/helpers/WsHandlers/OnErrorHandler.d.ts +1 -1
- package/lib/helpers/WsHandlers/OnMessageHandler.d.ts +1 -1
- package/lib/helpers/WsHandlers/OpenHandler.d.ts +1 -1
- package/lib/helpers/get-image-from-video-stream.d.ts +1 -1
- package/lib/helpers/mapQpToQuality.d.ts +1 -1
- package/lib/helpers/remove-exile-commands.d.ts +1 -1
- package/lib/interfaces/initial-config.d.ts +4 -4
- package/lib/services/aggregator.service.d.ts +4 -5
- package/lib/services/console-extensions.service.d.ts +1 -1
- package/lib/services/input.service.d.ts +1 -1
- package/lib/services/regions-ping.service.d.ts +1 -0
- package/lib/services/signalling.service.d.ts +1 -2
- package/lib/services/unreal-communicator.service.d.ts +8 -8
- package/lib/services/video-stream-status.service.d.ts +2 -2
- package/lib/services/web-rtc-player.service.d.ts +1 -1
- package/lib/store/unreal.actions.d.ts +3 -3
- package/lib/store/unreal.feature.d.ts +3 -3
- package/lib/store/unreal.reducer.d.ts +1 -1
- package/package.json +21 -6
package/LICENSE
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Copyright (c) 2025 3dsource
|
|
2
|
+
All Rights Reserved.
|
|
3
|
+
|
|
4
|
+
This software and associated documentation files (the “Software”) are proprietary
|
|
5
|
+
and confidential. Unauthorized copying, modification, distribution, or any other
|
|
6
|
+
use of the Software, in whole or in part, without the prior written consent of
|
|
7
|
+
the copyright holder is strictly prohibited.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
10
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
11
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
12
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
13
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
14
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,3 +1,36 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @3dsource/angular-unreal-module
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
### An unreal scene standalone component for a metabox studio and configurators for communicate with unreal applications
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
### peer dependencies
|
|
8
|
+
|
|
9
|
+
_List of peer dependencies_
|
|
10
|
+
|
|
11
|
+
```json
|
|
12
|
+
{
|
|
13
|
+
"@3dsource/source-ui-native": "^1.0.7",
|
|
14
|
+
"@3dsource/types-unreal": "^0.0.1",
|
|
15
|
+
"@3dsource/utils": "^1.0.13",
|
|
16
|
+
"@angular/cdk": "^19.2.0",
|
|
17
|
+
"@angular/common": "^19.2.0",
|
|
18
|
+
"@angular/core": "^19.2.0",
|
|
19
|
+
"@angular/forms": "^19.2.0",
|
|
20
|
+
"@ngrx/effects": "^19.1.0",
|
|
21
|
+
"@ngrx/operators": "^19.1.0",
|
|
22
|
+
"@ngrx/store": "^19.1.0"
|
|
23
|
+
}
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
```shell
|
|
27
|
+
npx install-peerdeps @3dsource/angular-unreal-module
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### library
|
|
31
|
+
|
|
32
|
+
```shell
|
|
33
|
+
npm i @3dsource/angular-unreal-module
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Usage
|