update : 星铁支持face-q

This commit is contained in:
story-x 2024-05-14 09:38:06 +08:00
parent aaf25da5ae
commit 54da8be2e7

View File

@ -128,10 +128,15 @@ const CharImg = {
let fileType = 'webp'
const nPath = `/meta-sr/character/${name}/`
let imgs = {}
let add = (key, path) => {
imgs[key] = `${nPath}${path}.${fileType}`
let add = (key, path, path2) => {
if (path2 && fs.existsSync(`${rPath}/${nPath}/${path2}.${fileType}`)) {
imgs[key] = `${nPath}${path2}.${fileType}`
} else {
imgs[key] = `${nPath}${path}.${fileType}`
}
}
add('face', 'imgs/face')
add('qFace', 'imgs/face', 'imgs/face-q')
add('splash', 'imgs/splash')
add('preview', 'imgs/preview')
for (let i = 1; i <= 3; i++) {