feat: 3d ofis sahnesi ve ekip karakterlerini ekle

This commit is contained in:
2026-03-19 03:49:50 +03:00
parent 4d6abff5c4
commit db477c7d5f
27 changed files with 2497 additions and 18 deletions

View File

@@ -0,0 +1,14 @@
export default function MeetingTable({ position = [0, 0, 0] }) {
return (
<group position={position}>
<mesh castShadow receiveShadow position={[0, 0.8, 0]}>
<cylinderGeometry args={[1.55, 1.55, 0.18, 28]} />
<meshStandardMaterial color="#bf8d61" roughness={0.88} />
</mesh>
<mesh castShadow receiveShadow position={[0, 0.36, 0]}>
<cylinderGeometry args={[0.22, 0.28, 0.72, 16]} />
<meshStandardMaterial color="#8e603b" roughness={0.86} />
</mesh>
</group>
);
}