Add the beginnings of the customizer UI

Relates to #320
This commit is contained in:
Kurt Hutten
2021-08-02 22:48:59 +10:00
parent 5e14ad0829
commit 8883df3445
3 changed files with 71 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ import { Vector3 } from 'three'
import { requestRender } from 'src/helpers/hooks/useIdeState'
import texture from './dullFrontLitMetal.png'
import { TextureLoader } from 'three/src/loaders/TextureLoader'
import Customizer from 'src/components/Customizer/Customizer'
const loader = new TextureLoader()
const colorMap = loader.load(texture)
@@ -243,6 +244,7 @@ const IdeViewer = ({ Loading }) => {
<div className="h-16 w-16 bg-pink-600 rounded-full animate-ping"></div>
</div>
)}
<Customizer />
</div>
)
}