repeat.never
import { repeat } from "@hmcs/sdk";
repeat.never() returns a VrmaRepeat value that plays the animation exactly once, then stops.
await character.playVrma({
asset: "my-mod:wave",
repeat: repeat.never(),
waitForCompletion: true,
});
Combine with waitForCompletion: true in playVrma to block until the one-shot animation finishes. See also repeat.forever and repeat.count.