• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

MeltyPlayer / MeltyTool / 17574188774

09 Sep 2025 06:45AM UTC coverage: 39.98% (-2.3%) from 42.309%
17574188774

push

github

MeltyPlayer
Okay, hopefully fixed the models now???

5774 of 16361 branches covered (35.29%)

Branch coverage included in aggregate %.

2 of 2 new or added lines in 1 file covered. (100.0%)

935 existing lines in 47 files now uncovered.

24391 of 59090 relevant lines covered (41.28%)

74782.62 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/FinModelUtility/UniversalAssetTool/UniversalAssetTool/src/ModelService.cs
1
using fin.io.web;
2
using fin.model;
3
using fin.model.io;
4
using fin.model.processing;
5
using fin.services;
6

7
using uni.api;
8
using uni.ui.winforms.common.fileTreeView;
9

10
namespace uni;
11

12
public static class ModelService {
13
  static ModelService() {
×
14
    FileBundleService.OnFileBundleOpened
×
15
        += (fileTreeLeafNode, fileBundle) => {
×
16
          LoadingStatusService.IsLoading = true;
×
17

×
18
          if (fileBundle.FileBundle is IModelFileBundle modelFileBundle) {
×
19
            try {
×
20
              var model
×
21
                  = new GlobalModelImporter().ImportAndProcess(modelFileBundle);
×
22
              OpenModel(fileTreeLeafNode, model);
×
23
            } catch (Exception e) {
×
24
              ExceptionService.HandleException(
×
25
                  e,
×
26
                  new LoadFileBundleExceptionContext(fileBundle));
×
27
            }
×
28
          }
×
UNCOV
29

×
UNCOV
30
          LoadingStatusService.IsLoading = false;
×
UNCOV
31
        };
×
UNCOV
32
  }
×
33

34
  public static event Action<IFileTreeLeafNode?, IModel>? OnModelOpened;
35

36
  public static void OpenModel(IFileTreeLeafNode? fileTreeLeafNode,
37
                               IModel model)
UNCOV
38
    => OnModelOpened?.Invoke(fileTreeLeafNode, model);
×
39
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc