feat: 3d ofis sahnesi ve ekip karakterlerini ekle
This commit is contained in:
14
web/src/office/primitives/MeetingTable.jsx
Normal file
14
web/src/office/primitives/MeetingTable.jsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user