make offline safe

This commit is contained in:
Kurt Hutten IrevDev
2022-12-18 08:13:46 +11:00
parent cecc4b1f01
commit 6abc0d2798
2 changed files with 2 additions and 2 deletions

BIN
public/roboto.woff Normal file

Binary file not shown.

View File

@ -88,10 +88,10 @@ export const BasePlanes = () => {
transparent
opacity={opacity + (axisIndex === index ? 0.3 : 0)}
/>
<Text fontSize={1} color="#555" position={[1, 1, 0.01]}>
<Text fontSize={1} color="#555" position={[1, 1, 0.01]} font={'/roboto.woff'}>
{index === 0 ? 'xy' : index === 1 ? 'xz' : 'yz'}
</Text>
<Text fontSize={1} color="#555" position={[1, 1, -0.01]}>
<Text fontSize={1} color="#555" position={[1, 1, -0.01]} font={'/roboto.woff'}>
{index === 0 ? 'xy' : index === 1 ? 'xz' : 'yz'}
</Text>
</mesh>