kongxiangyiren / hexo-oh-my-live2d

一个用于 hexo 的 live2d 看板娘插件,支持所有版本的模型。
7 stars 1 forks source link

导入本地文件 #1

Closed planck2003 closed 1 year ago

planck2003 commented 1 year ago

请问怎么导入本地的模型啊

kongxiangyiren commented 1 year ago

本地模型放在source目录下

image

_config.yml 的 skip_render 添加模型文件夹 防止编译出错

image

source 改为'' 使用本地域名 path 为你的model.json路径

OhMyLive2d:
  enable: true
  CDN: https://npm.elemecdn.com/oh-my-live2d@0.3.0/dist/index.min.js
  option:
    source: ''
    mobileShow: true # 手机端是否展示
    sayHello: false
    transitionTime: 1000
    models:
      - scale: 1.2
        path: /live2d-widget-model-koharu/assets/koharu.model.json
        x: 0
        'y': 0
        stageStyle:
          backgroundColor: 'rgba(0, 0, 0, 0)'
          width: auto
          height: auto
    tips:
      style:
        width: 230
        height: 120
        offsetX: 0
        offsetY: 90
      idleTips:
        interval: 15000
        # remote: false # 自定义
        remote: false

image