listVrma
import { Vrm } from "@hmcs/sdk";
vrm.listVrma() はこのキャラクターに現在アタッチされているすべての VRMA アニメーションを返します。
const animations = await character.listVrma();
for (const anim of animations) {
console.log(`${anim.name}: entity=${anim.entity}, playing=${anim.playing}`);
}
アニメーションのエンティティ ID、名前、再生状態を含む VrmaInfo オブジェクトの配列を返します。