state
import { Vrm } from "@hmcs/sdk";
vrm.state() returns the character's current state string (e.g., "idle", "drag", "sitting").
const character = await Vrm.findByName("MyAvatar");
const state = await character.state();
console.log("Current state:", state);
Use setState to change the state, or subscribe to events() to react when the state changes.