@3dsource/angular-unreal-module 0.0.79-dev.0 → 0.0.80

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.
@@ -308,7 +308,6 @@ class AFKService extends SubService {
308
308
  this.init();
309
309
  }
310
310
  init() {
311
- console.log('DEBUG: AFKService init');
312
311
  merge(this.store.select(selectWarnTimeout), fromSignal(UnrealInternalSignalEvents.RestAfkTimer))
313
312
  .pipe(withLatestFrom(this.store.select(unrealFeature.selectViewportReady)), filter(([, viewportReady]) => viewportReady))
314
313
  .subscribe(() => this.resetAfkWarningTimer());
@@ -416,7 +415,6 @@ class FreezeFrameService extends SubService {
416
415
  this.init();
417
416
  }
418
417
  init() {
419
- console.log('DEBUG: FreezeFrameService init');
420
418
  this.store
421
419
  .select(unrealFeature.selectViewportReady)
422
420
  .pipe(filter(Truthy))
@@ -612,7 +610,6 @@ class VideoService extends SubService {
612
610
  this.init();
613
611
  }
614
612
  init() {
615
- console.log('DEBUG: VideoService init');
616
613
  Signal.on('setKalmanParams').subscribe((data) => {
617
614
  this.kalmanFilter1D.config(data);
618
615
  BITRATE_MONITOR.config(data);
@@ -876,7 +873,6 @@ class CommandTelemetryService {
876
873
  this.init();
877
874
  }
878
875
  init() {
879
- console.log('DEBUG: CommandTelemetryService init');
880
876
  if (!this.unrealInitialConfig?.commandTelemetryReceiver) {
881
877
  return;
882
878
  }
@@ -1202,7 +1198,6 @@ class SignallingService extends SubService {
1202
1198
  this.init();
1203
1199
  }
1204
1200
  init() {
1205
- console.log('DEBUG: SignallingService init');
1206
1201
  this.setHandlersFromStream();
1207
1202
  this.store
1208
1203
  .select(unrealFeature.selectDataChannelConnected)
@@ -1514,7 +1509,6 @@ class WebRtcPlayerService extends SubService {
1514
1509
  this.init();
1515
1510
  }
1516
1511
  init() {
1517
- console.log('DEBUG: WebRtcPlayerService init');
1518
1512
  const iceCandidateBuffer = [];
1519
1513
  const processBuffer = () => {
1520
1514
  iceCandidateBuffer.forEach((cnd) => {
@@ -1899,7 +1893,6 @@ class FileReceiverService extends SubService {
1899
1893
  this.init();
1900
1894
  }
1901
1895
  init() {
1902
- console.log('DEBUG: FileReceiverService init');
1903
1896
  this.store
1904
1897
  .select(unrealFeature.selectViewportReady)
1905
1898
  .pipe(filter(Truthy))
@@ -2016,7 +2009,6 @@ class AggregatorService extends SubService {
2016
2009
  this.init();
2017
2010
  }
2018
2011
  init() {
2019
- console.log('DEBUG: AggregatorService init');
2020
2012
  this.listenWebRTC();
2021
2013
  this.initialize();
2022
2014
  }
@@ -2199,7 +2191,6 @@ class ConsoleExtensionsService extends SubService {
2199
2191
  this.init();
2200
2192
  }
2201
2193
  init() {
2202
- console.log('DEBUG: ConsoleExtensionsService init');
2203
2194
  if (!this.#isDevMode) {
2204
2195
  return;
2205
2196
  }
@@ -2436,7 +2427,6 @@ class UnrealCommunicatorService {
2436
2427
  this.init();
2437
2428
  }
2438
2429
  init() {
2439
- console.log('DEBUG: UnrealCommunicatorService init');
2440
2430
  this.emitUIInteraction = this.commandTelemetryService.decorate(this.emitUIInteraction.bind(this));
2441
2431
  this.listenVideo();
2442
2432
  this.store
@@ -2577,7 +2567,6 @@ class InputService extends SubService {
2577
2567
  this.init();
2578
2568
  }
2579
2569
  init() {
2580
- console.log('DEBUG: InputService init');
2581
2570
  const visibilityHiddenTrigger$ = fromEvent(document, 'visibilitychange').pipe(map$1(() => document.visibilityState === 'hidden'), filter(Truthy));
2582
2571
  const visibilityVisibleTrigger$ = fromEvent(document, 'visibilitychange').pipe(map$1(() => document.visibilityState === 'visible'), filter(Truthy), startWith(true));
2583
2572
  this.deactivatedVideoTrigger$ = merge(this.disconnect$, this.reInit$, visibilityHiddenTrigger$);
@@ -3133,7 +3122,6 @@ class StreamStatusTelemetryService {
3133
3122
  this.init();
3134
3123
  }
3135
3124
  init() {
3136
- console.log('DEBUG: StreamStatusTelemetryService init');
3137
3125
  this.#videoService.videoStats$
3138
3126
  .pipe(withLatestFrom(this.#store.select(unrealFeature.selectAwsInstance), this.#store.select(unrealFeature.selectLowBandwidth), this.#store.select(unrealFeature.selectLowBandwidthStats), this.#store.select(unrealFeature.selectCirrusConnected)), auditTime(5000), filter(([, , , , cirrusConnected]) => cirrusConnected), map$1(([data, signalingServer, isLowBandwidth, lbmStats]) => this.mapEventData(data, signalingServer, isLowBandwidth, lbmStats)))
3139
3127
  .subscribe((data) => this.trackEventToMixPanel(data));
@@ -4881,7 +4869,6 @@ class UnrealSceneComponent {
4881
4869
  const videoElement = this.videoElement();
4882
4870
  const isExistMatchUrls = this.isExistMatchUrls();
4883
4871
  if (videoElement && isExistMatchUrls) {
4884
- console.log('DEBUG: Unreal scene is ready');
4885
4872
  this.store.dispatch(initSignalling());
4886
4873
  }
4887
4874
  });