1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
import type { AvailableModel } from "../store/store.ts";
export const availableModels: AvailableModel[] = [
{
id: "megaman_volnutt",
name: "Megaman Volnutt",
url: "/models/megaman_volnutt.gltf",
},
{
id: "megaman_juno",
name: "Megaman Juno",
url: "/models/megaman_juno.gltf",
},
{
id: "roll_caskett",
name: "Roll Caskett",
url: "/models/roll_caskett.gltf",
},
{ id: "tron_bonne", name: "Tron Bonne", url: "/models/tron_bonne.gltf" },
{
id: "teisel_bonne",
name: "Teisel Bonne",
url: "/models/teisel_bonne.gltf",
},
{ id: "bon_bonne", name: "Bon Bonne", url: "/models/bon_bonne.gltf" },
{ id: "servbot", name: "Servbot", url: "/models/servbot.gltf" },
{ id: "barrell", name: "Barrell", url: "/models/barrell.gltf" },
{ id: "wily", name: "Wily", url: "/models/wily.gltf" },
{ id: "paprika", name: "Paprika", url: "/models/paprika.gltf" },
{ id: "flutter", name: "Flutter", url: "/models/flutter.gltf" },
{ id: "support_car", name: "Support Car", url: "/models/support_car.gltf" },
{ id: "eden", name: "Eden", url: "/models/eden.gltf" },
{ id: "chest", name: "Chest", url: "/models/chest.gltf" },
{
id: "city_gate_key",
name: "City Gate Key",
url: "/models/city_gate_key.gltf",
},
{ id: "easel", name: "Easel", url: "/models/easel.gltf" },
{ id: "frog", name: "Frog", url: "/models/frog.gltf" },
{ id: "hawk", name: "Hawk", url: "/models/hawk.gltf" },
{ id: "seagull", name: "Seagull", url: "/models/seagull.gltf" },
{
id: "old_city_hound",
name: "Old City Hound",
url: "/models/old_city_hound.gltf",
},
{ id: "arukoitan", name: "Arukoitan", url: "/models/arukoitan.gltf" },
{ id: "cannam", name: "Cannam", url: "/models/cannam.gltf" },
{ id: "firushudot", name: "Firushudot", url: "/models/firushudot.gltf" },
{ id: "foo-roo", name: "Foo-Roo", url: "/models/foo-roo.gltf" },
{ id: "garudoriten", name: "Garudoriten", url: "/models/garudoriten.gltf" },
{ id: "gorubesshu", name: "Gorubesshu", url: "/models/gorubesshu.gltf" },
{
id: "hanmuru_doll",
name: "Hanmuru Doll",
url: "/models/hanmuru_doll.gltf",
},
{ id: "horokko", name: "Horokko", url: "/models/horokko.gltf" },
{ id: "jakko", name: "Jakko", url: "/models/jakko.gltf" },
{ id: "karubun", name: "Karubun", url: "/models/karubun.gltf" },
{
id: "karumuna_bash",
name: "Karumuna Bash",
url: "/models/karumuna_bash.gltf",
},
{ id: "kuruguru", name: "Kuruguru", url: "/models/kuruguru.gltf" },
{ id: "miroc", name: "Miroc", url: "/models/miroc.gltf" },
{ id: "orudakoitan", name: "Orudakoitan", url: "/models/orudakoitan.gltf" },
{
id: "rotating_trap",
name: "Rotating Trap",
url: "/models/rotating_trap.gltf",
},
{ id: "sharukurusu", name: "Sharukurusu", url: "/models/sharukurusu.gltf" },
{ id: "shekuten", name: "Shekuten", url: "/models/shekuten.gltf" },
];
|