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

MeltyPlayer / MeltyTool / 21340044889

25 Jan 2026 09:41PM UTC coverage: 42.078% (-0.1%) from 42.219%
21340044889

push

github

MeltyPlayer
Started investigating Facade.

6855 of 18410 branches covered (37.24%)

Branch coverage included in aggregate %.

6 of 273 new or added lines in 4 files covered. (2.2%)

29407 of 67768 relevant lines covered (43.39%)

64152.18 hits per line

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

0.0
/FinModelUtility/UniversalAssetTool/UniversalAssetTool/src/api/GlobalModelLoader.cs
1
using ac.api;
2

3
using Celeste64.api;
4

5
using facade.api;
6

7
using grezzo.api;
8

9
using sysdolphin.api;
10

11
using fin.model;
12
using fin.model.io;
13
using fin.model.io.importers;
14

15
using glo.api;
16

17
using gm.api;
18

19
using hw.api;
20

21
using jsystem.api;
22

23
using level5.api;
24

25
using pikmin1.api;
26

27
using modl.api;
28

29
using nitro.api;
30

31
using sm64ds.api;
32

33
using ttyd.api;
34

35
using UoT.api;
36

37
using visceral.api;
38

39
using vrml.api;
40

41
using xmod.api;
42

43
using fin.model.io.importers.assimp;
44
using fin.model.io.importers.gltf;
45

46
using gdl.api;
47

48
using marioartist.api;
49

50
using rollingMadness.api;
51

52
using sonicadventure.api;
53

54

55
namespace uni.api;
56

57
public sealed class GlobalModelImporter : IModelImporter<IModelFileBundle> {
58
  public IModel Import(IModelFileBundle modelFileBundle)
59
    => modelFileBundle switch {
×
60
        AnimalCrossingModelFileBundle animalCrossingModelFileBundle
×
61
            => new AnimalCrossingModelImporter().Import(animalCrossingModelFileBundle),
×
62
        AseMeshModelFileBundle aseMeshModelFileBundle
×
63
            => new AseMeshModelImporter().Import(aseMeshModelFileBundle),
×
64
        AssimpModelFileBundle assimpModelFileBundle
×
65
            => new AssimpModelImporter().Import(assimpModelFileBundle),
×
66
        IBattalionWarsModelFileBundle battalionWarsModelFileBundle
×
67
            => new BattalionWarsModelImporter().Import(
×
68
                battalionWarsModelFileBundle),
×
69
        BmdModelFileBundle bmdModelFileBundle
×
70
            => new BmdModelImporter().Import(bmdModelFileBundle),
×
71
        Celeste64MapModelFileBundle celeste64MapModelFileBundle
×
72
            => new Celeste64MapModelImporter().Import(
×
73
                celeste64MapModelFileBundle),
×
74
        CmbModelFileBundle cmbModelFileBundle
×
75
            => new CmbModelImporter().Import(cmbModelFileBundle),
×
76
        DatModelFileBundle datModelFileBundle
×
77
            => new DatModelImporter().Import(datModelFileBundle),
×
78
        D3dModelFileBundle modModelFileBundle
×
79
            => new D3dModelImporter().Import(modModelFileBundle),
×
NEW
80
        FacadeRoomModelFileBundle facadeRoomModelFileBundle
×
NEW
81
            => new FacadeRoomModelImporter().Import(facadeRoomModelFileBundle),
×
82
        GauntletDarkLegacyModelFileBundle animModelFileBundle
×
83
            => new GauntletDarkLegacyModelImporter().Import(animModelFileBundle),
×
84
        GauntletDarkLegacyWorldModelFileBundle animModelFileBundle
×
85
            => new GauntletDarkLegacyWorldModelImporter().Import(animModelFileBundle),
×
86
        GeoModelFileBundle geoModelFileBundle
×
87
            => new GeoModelImporter().Import(geoModelFileBundle),
×
88
        GloModelFileBundle gloModelFileBundle
×
89
            => new GloModelImporter().Import(gloModelFileBundle),
×
90
        GltfModelFileBundle gltfModelFileBundle
×
91
            => new GltfModelImporter().Import(gltfModelFileBundle),
×
92
        Ma3d1ModelFileBundle ma3d1ModelFileBundle
×
93
            => new Ma3d1ModelLoader().Import(ma3d1ModelFileBundle),
×
94
        MeleeModelFileBundle meleeModelFileBundle
×
95
            => new MeleeModelImporter().Import(meleeModelFileBundle),
×
96
        ModModelFileBundle modModelFileBundle
×
97
            => new ModModelImporter().Import(modModelFileBundle),
×
98
        NsbmdModelFileBundle nsbmdModelFileBundle
×
99
            => new NsbmdModelImporter().Import(nsbmdModelFileBundle),
×
100
        OmdModelFileBundle omdModelFileBundle
×
101
            => new OmdModelImporter().Import(omdModelFileBundle),
×
102
        OotModelFileBundle ootModelFileBundle
×
103
            => new OotModelImporter().Import(ootModelFileBundle),
×
104
        PedModelFileBundle pedModelFileBundle
×
105
            => new PedModelImporter().Import(pedModelFileBundle),
×
106
        Sm64dsModelFileBundle sm64dsModelFileBundle
×
107
            => new Sm64dsModelImporter().Import(sm64dsModelFileBundle),
×
108
        SonicAdventureModelFileBundle sonicAdventureModelFileBundle
×
109
            => new SonicAdventureModelFileImporter().Import(
×
110
                sonicAdventureModelFileBundle),
×
111
        TstltModelFileBundle tstltModelFileBundle
×
112
            => new TstltModelLoader().Import(tstltModelFileBundle),
×
113
        TtydModelFileBundle ttydModelFileBundle
×
114
            => new TtydModelImporter().Import(ttydModelFileBundle),
×
115
        VbModelFileBundle vbModelFileBundle
×
116
            => new VbModelImporter().Import(vbModelFileBundle),
×
117
        VrmlModelFileBundle vrmlModelFileBundle
×
118
            => new VrmlModelImporter().Import(vrmlModelFileBundle),
×
119
        XcModelFileBundle xcModelFileBundle
×
120
            => new XcModelImporter().Import(xcModelFileBundle),
×
121
        XmodModelFileBundle xmodModelFileBundle
×
122
            => new XmodModelImporter().Import(xmodModelFileBundle),
×
123
        XtdModelFileBundle xtdModelFileBundle
×
124
            => new XtdModelImporter().Import(xtdModelFileBundle),
×
125
        ZsiModelFileBundle zsiModelFileBundle
×
126
            => new ZsiModelImporter().Import(zsiModelFileBundle),
×
127
        _ => throw new ArgumentOutOfRangeException(nameof(modelFileBundle))
×
128
    };
×
129
}
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