Skip to content

Commit

Permalink
[edit] change Default expression name
Browse files Browse the repository at this point in the history
  • Loading branch information
spd789562 committed Nov 12, 2024
1 parent 51fbb99 commit 562ce4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/CharacterPreview/ExpressionSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { CharacterExpressions } from '@/const/emotions';

const options = [
{
label: '預設',
label: '預設表情',
value: CharacterExpressions.Default,
},
{
Expand Down
4 changes: 2 additions & 2 deletions src/store/previewChairZoom.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { atom, batched } from 'nanostores';
import type { PointData } from 'pixi.js';

export const MIN_ZOOM = 0.2;
export const MAX_ZOOM = 4;
export const MIN_ZOOM = 0.5;
export const MAX_ZOOM = 3;
export const DEFAULT_ZOOM = 1;

export const DEFAULT_CENTER: PointData = { x: 0, y: -53 };
Expand Down

0 comments on commit 562ce4a

Please sign in to comment.