Vrm.findAllEntities
import { Vrm } from "@hmcs/sdk";
Vrm.findAllEntities() returns the raw entity IDs of all currently loaded VRM instances without wrapping them in Vrm objects.
const entityIds = await Vrm.findAllEntities();
console.log(`Found ${entityIds.length} VRM entities`);
Use this when you only need the entity IDs and want to avoid the overhead of constructing Vrm wrapper objects. Use Vrm.findAll when you need to call instance methods on the results.