[feat] added additional assets

This commit is contained in:
kwaroran
2023-05-19 00:51:03 +09:00
parent 06b9a53a90
commit b17e731c28
16 changed files with 161 additions and 35 deletions

View File

@@ -2,7 +2,7 @@ import { get, writable } from 'svelte/store';
import { checkNullish } from './util';
import { changeLanguage } from '../lang';
import type { RisuPlugin } from './process/plugins';
import { saveImage as saveImageGlobal } from './globalApi';
import { saveAsset as saveImageGlobal } from './globalApi';
import { cloneDeep } from 'lodash';
export const DataBase = writable({} as any as Database)
@@ -277,6 +277,7 @@ export interface character{
ttsMode?:string
ttsSpeech?:string
supaMemory?:boolean
additionalAssets?:[string, string][]
}