diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2026-01-30 11:31:24 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2026-01-30 13:05:48 +0100 |
| commit | 0d4b61993cba37c180ac91e40a0fb362711de8de (patch) | |
| tree | f41dd68420b51766c1ca6fc1ee2c20dc5df830d1 /src/data | |
Initial implementation
Diffstat (limited to 'src/data')
| -rw-r--r-- | src/data/availableModels.ts | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/src/data/availableModels.ts b/src/data/availableModels.ts new file mode 100644 index 0000000..b1946bb --- /dev/null +++ b/src/data/availableModels.ts @@ -0,0 +1,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" }, +]; |