Hello, I have been searching for an answer or at least some tutorial on how to use ExtrudeGeometry with FC, to no avail. My goal is to create a hollow box (with the floor, roof and two walls) which was successful without React/TS bindings.
App.tsx
<CameraControls>
{cabinets?.map(({ height, width, depth, name }) => (
<group key={name}>
<Cabinet
height={height}
width={width}
depth={depth}
>
</Cabinet>
</group>
</CameraControls>
Cabinet.tsx
import React, { FC, MutableRefObject, useEffect, useRef, useState, useMemo } from 'react'
import { Box } from '@react-three/drei'
import { MeshProps } from '@react-three/fiber'
import {
BufferGeometry,
Material,
Mesh,
DoubleSide,
Object3D,
Vector3,
Shape
} from 'three'
interface Props extends MeshProps {
position: [number, number, number]
width: number
height: number
depth: number
}
export type CabinetRef = MutableRefObject<
Mesh<BufferGeometry, Material | Material[]>
>
export const Cabinet: FC<Props> = ({
height,
width,
depth,
...props
}) => {
const mesh = useRef<THREE.Mesh>(null!)
const extrudeSettings = {
amount: 12,
bevelEnabled: true,
bevelThickness: 0.0,
bevelSize: 0.0,
bevelSegments: 0,
material: 0,
extrudeMaterial: 1
}
const extrusion = new Path()
extrusion.moveTo(-0.25, -0.25)
extrusion.lineTo(-200, -0.25)
extrusion.lineTo(-200, -200)
extrusion.lineTo(-0.25, -200)
extrusion.lineTo(-0.25, -0.25)
return (
<TransformControls show={active} position={position]>
<Box
{...props}
ref={mesh}
args={[width, height, depth]}
castShadow
receiveShadow
>
<meshStandardMaterial attach="material" color={color} />
</Box>
</TransformControls>
)
The files of course have been pruned of irrelevant parts, but the main thing is that the current code produces boxes of right size and right position in the scene. However, for the love of my life I cannot find the correct way to make the boxes hollow; I tried to add extrudeGeometry with various values to Box, but no extrusions came visible although the code did build and run without errors. Can someone lend me a helping hand with this?