refactor(assets): 将门图标文件重命名为英文名称以提升代码可读性和维护性

This commit is contained in:
xudan 2025-12-01 15:42:52 +08:00
parent acc7afddf9
commit 1babdbee80
5 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 574 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 418 B

View File

@ -4,8 +4,8 @@ import sTheme from '@core/theme.service';
import { type Meta2dStore } from '@meta2d/core';
import { get } from 'lodash-es';
import doorClosedUrl from '../../assets/icons/png/guanmen.png';
import doorOpenUrl from '../../assets/icons/png/weixinkaimen.png';
import doorClosedUrl from '../../assets/icons/png/doorClosed.png';
import doorOpenUrl from '../../assets/icons/png/doorOpening.png';
import colorConfig from '../color/color-config.service';
const __doorImgOpen = new Image();
__doorImgOpen.src = (doorOpenUrl as unknown as string) || '';