Skip to content

Commit

Permalink
make speech and thought bubbles bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmacartney committed Aug 14, 2023
1 parent ad58d29 commit 529e588
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Character.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ export const Character = ({
<Container x={x} y={y} interactive={true} pointerdown={onClick}>
{isThinking && (
// TODO: We'll eventually have separate assets for thinking and speech animations.
<Text x={-10} y={-10} scale={{ x: -0.5, y: 0.5 }} text={'💭'} anchor={{ x: 0.5, y: 0.5 }} />
<Text x={-20} y={-10} scale={{ x: -0.8, y: 0.8 }} text={'💭'} anchor={{ x: 0.5, y: 0.5 }} />
)}
{isSpeaking && (
// TODO: We'll eventually have separate assets for thinking and speech animations.
<Text x={15} y={-5} scale={0.5} text={'💬'} anchor={{ x: 0.5, y: 0.5 }} />
<Text x={18} y={-10} scale={0.8} text={'💬'} anchor={{ x: 0.5, y: 0.5 }} />
)}
<AnimatedSprite
isPlaying={isMoving}
Expand Down

0 comments on commit 529e588

Please sign in to comment.