rspress-plugin-live2d
v1.0.0
Published
Rspress plugin with live 2d.
Downloads
177
Readme
rspress-plugin-live2d 
Rspress 的看板娘插件, 基于 on-my-live2d.

使用
npm install rspress-plugin-live2d
pnpm install rspress-plugin-live2dimport * as path from 'path';
import { defineConfig } from 'rspress/config';
import live2d from 'rspress-plugin-live2d';
export default defineConfig({
root: path.join(__dirname, 'docs'),
title: 'Rspress x Live2d Example',
plugins: [
live2d({
models: [
{
path: 'https://model.oml2d.com/HK416-1-normal/model.json',
position: [0, 60],
scale: 0.08,
stageStyle: {
height: 450,
},
},
],
}),
],
});配置
参考 On My Live2D 来查找更多模型和配置。
