A registry of various entities.
// Get a list of abstract entitiesconst entityRegistry = pluginSystem.findInterface(Editor.Model.IEntityRegistry);const abstractFilter = (entityType) => { return entityRegistry.getMeta(entityType).isAbstract;}; Copy
// Get a list of abstract entitiesconst entityRegistry = pluginSystem.findInterface(Editor.Model.IEntityRegistry);const abstractFilter = (entityType) => { return entityRegistry.getMeta(entityType).isAbstract;};
Protected
Snap Hidden
Static
Get the metadata of an entity.
Returns the name of this object's type.
Returns true if the object is of the specified type.
Returns true if this object refers to the same instance as the given object.
A registry of various entities.
Example