From cae558e92331f3b6e7fc9a26e90f06ae8af461cf Mon Sep 17 00:00:00 2001 From: dan-rpm Date: Tue, 17 Sep 2024 15:59:04 +0300 Subject: [PATCH] feat: statsgl added for nova dev env --- src/App/components/Nova.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/App/components/Nova.tsx b/src/App/components/Nova.tsx index 390d6b1f..e36c4dc6 100644 --- a/src/App/components/Nova.tsx +++ b/src/App/components/Nova.tsx @@ -1,4 +1,5 @@ import React from 'react'; +import { StatsGl } from '@react-three/drei'; import { Avatar, CAMERA } from 'src/components/Avatar'; import { emotions } from 'src/services/Stories.service'; @@ -36,7 +37,9 @@ export const AvatarNova: React.FC = () => { style={{ background: 'rgb(9,20,26)' }} fov={45} cameraInitialDistance={CAMERA.CONTROLS.FULL_BODY.MAX_DISTANCE} - /> + > + + ); };