Spaces:
Sleeping
Sleeping
Update src/components/Character.tsx
Browse files
src/components/Character.tsx
CHANGED
@@ -85,10 +85,6 @@ export const Character = ({
|
|
85 |
|
86 |
return (
|
87 |
<Container x={x} y={y} interactive={true} pointerdown={onClick} cursor="pointer">
|
88 |
-
{isThinking && (
|
89 |
-
// TODO: We'll eventually have separate assets for thinking and speech animations.
|
90 |
-
<Text x={-20} y={-10} scale={{ x: -0.8, y: 0.8 }} text={'💭'} anchor={{ x: 0.5, y: 0.5 }} />
|
91 |
-
)}
|
92 |
{isSpeaking && (
|
93 |
// TODO: We'll eventually have separate assets for thinking and speech animations.
|
94 |
<Text x={18} y={-10} scale={0.8} text={'💬'} anchor={{ x: 0.5, y: 0.5 }} />
|
|
|
85 |
|
86 |
return (
|
87 |
<Container x={x} y={y} interactive={true} pointerdown={onClick} cursor="pointer">
|
|
|
|
|
|
|
|
|
88 |
{isSpeaking && (
|
89 |
// TODO: We'll eventually have separate assets for thinking and speech animations.
|
90 |
<Text x={18} y={-10} scale={0.8} text={'💬'} anchor={{ x: 0.5, y: 0.5 }} />
|