This commit is contained in:
syuilo 2026-05-30 19:18:43 +09:00
commit c67e231ff5
6 changed files with 2 additions and 0 deletions

View file

@ -44,6 +44,7 @@ const DEFAULT_FACE_PARTS_MOUTH = {
'f': '/client-assets/world/avatars/mouth-f.png',
'g': '/client-assets/world/avatars/mouth-g.png',
'h': '/client-assets/world/avatars/mouth-h.png',
'i': '/client-assets/world/avatars/mouth-i.png',
};
export class PlayerContainer {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -100,6 +100,7 @@ SPDX-License-Identifier: AGPL-3.0-only
{ label: 'f', value: 'f' },
{ label: 'g', value: 'g' },
{ label: 'h', value: 'h' },
{ label: 'i', value: 'i' },
]" :modelValue="avatar.mouth.type" @update:modelValue="v => { avatar.mouth.type = v; updateAvatarOption(); }"
>
<template #label>{{ i18n.ts.type }}</template>