From 9a67a800fa26752f02e29ab1221e01203ee38b22 Mon Sep 17 00:00:00 2001 From: neru Date: Mon, 1 Jun 2026 16:49:04 -0300 Subject: [PATCH] feat: add hover anim --- src/app/niko/scene-components/sealcube.tsx | 1 + 1 file changed, 1 insertion(+) 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; } });