feat: add main feature module selection

This commit is contained in:
Tom Boullay
2026-04-29 23:30:31 +02:00
parent 8b3f24b90b
commit 2783b13488
11 changed files with 515 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
export interface ModelCatalogItem {
name: string;
path: string;
}
export const MAIN_FEATURE_MODEL_CATALOG: ModelCatalogItem[] = [
{ name: "Kit de relance", path: "/models/packderelance/model.gltf" },
{ name: "Talkie", path: "/models/talkie/model.gltf" },
{ name: "Refroidisseur", path: "/models/refroidisseur/model.gltf" },
{ name: "Sapin", path: "/models/sapin/model.gltf" },
{ name: "Gant", path: "/models/gant/model.gltf" },
{ name: "Galet", path: "/models/galet/model.gltf" },
];