🎨 3D Professionnel Configurator 3D Pro
Configurator 3D Pro
Materials • Text • Print
1500+ lignes pour materials PBR, text 3D & export 300 DPI
5
Materials PBR
Leather, Fabric, Metal...
8
Fonts 3D
Helvetiker, Optimer...
300
DPI Print
4K/8K Ready
Materials PBR (MaterialsManager.ts - 280 lignes)
// import { MaterialsManager } from '@luneo/optimization';
// Note: Package disponible dans le monorepo packages/optimization const manager = new MaterialsManager(); // 5 presets disponibles:
// - leather_black
// - fabric_cotton
// - metal_brushed
// - wood_oak
// - plastic_matte // Charger material avec textures PBR complètes
const leather = await manager.loadMaterial('leather_black'); // PBR Texture Set:
// ✅ Diffuse/Albedo map
// ✅ Normal map
// ✅ Roughness map
// ✅ Metalness map (pour metal)
// ✅ AO (Ambient Occlusion) map
// ✅ Displacement map (optionnel) // Appliquer au mesh
mesh.material = leather; // Changer couleur (garde les textures)
manager.setColor(leather, '#8B4513'); // Brown leather // Appliquer à tous les meshes d'un objet
manager.applyToObject(productModel, leather); Leather
Diffuse, Normal, Roughness, AO
Fabric
Diffuse, Normal, Roughness
Metal
Diffuse, Normal, Roughness, Metalness
Wood
Diffuse, Normal, Roughness, AO
Plastic
Diffuse, Roughness