fghrsh / live2d_api

Live2D 看板娘插件 (https://www.fghrsh.net/post/123.html) 上使用的后端 API
https://live2d.fghrsh.net
MIT License
1.15k stars 520 forks source link

如何加载模型后对模型进行平移 #9

Open XunZhan opened 3 years ago

XunZhan commented 3 years ago

你好,

由于自己的模型头发太高,点头动作会导致呆毛有一部分被canvas截断,请问如何设置加载模型时或显示模型时,将模型向下偏移一段距离?谢谢你!

Dragon1573 commented 5 months ago

概述

@XunZhan - 我的模型是脖子以上全没了😭暂时没能找到设置位置或者缩小模型的配置

image


解决方案

模型是在 <canvas /> 中被渲染的,需要调整模型本身。

以我使用的模型为例,需要针对性调整 layout 下的4个参数。

{
    "posted": "Dreamer-Paul",
    "version": "Live2DViewerEX Config 1.0",
    "model": "sagiri.moc",
    "textures": [
        "textures/texture_00.png",
        "textures/texture_01.png"
    ],
    "layout": {
        "center_x": 0,
        "center_y": -0.3,
        "width": 2,
        "height": 2
    },
    "motions": {
        "tap": [
            {
                "file": "motions/tap/c.mtn"
            }
        ],
        "idle": [
            {
                "file": "motions/idle/idle_01.mtn"
            },
            {
                "file": "motions/idle/idle_02.mtn"
            },
            {
                "file": "motions/idle/idle_03.mtn"
            },
            {
                "file": "motions/idle/idle_04.mtn"
            }
        ]
    },
    "physics": "physics.json"
}

image