diff --git a/src/app/niko/scene-components/sealcube.tsx b/src/app/niko/scene-components/sealcube.tsx index 50e78dd..5ab9ce1 100644 --- a/src/app/niko/scene-components/sealcube.tsx +++ b/src/app/niko/scene-components/sealcube.tsx @@ -12,6 +12,7 @@ const SealCube = forwardRef((props, ref) => { if (meshRef.current) { meshRef.current.rotation.x += delta * 0.5; meshRef.current.rotation.y += delta * 0.5; + meshRef.current.position.y = 3 + Math.sin(state.clock.getElapsedTime() * 1) * 0.15; } });