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

MeltyPlayer / MeltyTool / 23081282649

14 Mar 2026 05:21AM UTC coverage: 41.505% (-0.05%) from 41.558%
23081282649

push

github

MeltyPlayer
Set up janky loader for The Labyrinth: Plus Edition.

7012 of 18962 branches covered (36.98%)

Branch coverage included in aggregate %.

1 of 94 new or added lines in 9 files covered. (1.06%)

29943 of 70075 relevant lines covered (42.73%)

62302.35 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 fin.model;
8
using fin.model.io;
9
using fin.model.io.importers;
10
using fin.model.io.importers.assimp;
11
using fin.model.io.importers.gltf;
12

13
using gdl.api;
14

15
using glo.api;
16

17
using gm.api;
18

19
using grezzo.api;
20

21
using hw.api;
22

23
using jsystem.api;
24

25
using level5.api;
26

27
using marioartist.api;
28

29
using mk3d.api;
30

31
using modl.api;
32

33
using nitro.api;
34

35
using pikmin1.api;
36

37
using pmdc.api;
38

39
using rollingMadness.api;
40

41
using sm64ds.api;
42

43
using sonicadventure.api;
44

45
using sysdolphin.api;
46

47
using tlpe.api;
48

49
using ttyd.api;
50

51
using UoT.api;
52

53
using visceral.api;
54

55
using vrml.api;
56

57
using xmod.api;
58

59

60
namespace uni.api;
61

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