vrm-c / vrm-specification

vrm specification

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[VRMA] humanoid, expression, lookat の何れかひとつが入っていればいいことにしたい

ousttrue opened this issue · comments

https://github.com/vrm-c/vrm-specification/blob/master/specification/VRMC_vrm_animation-1.0/schema/VRMC_vrm_animation.schema.json#L24

たとえば Expression だけを格納している(リップシンクなど)場合に、humanoid T-Pose を省略してもよさそうです。

oneOf で表現できるぽい?

    "oneOf": [
        {
            "required": [
                "humanoid"
            ]
        },
        {
            "required": [
                "expression"
            ]
        },
        {
            "required": [
                "lookAt"
            ]
        },
]