Skip to content

@relu-interactives/spatial-ecs


@relu-interactives/spatial-ecs / types / EcsEntityKind

Type Alias: EcsEntityKind

ts
type EcsEntityKind = 
  | "cube"
  | "sphere"
  | "plane"
  | "capsule"
  | "cylinder"
  | "empty"
  | "model"
  | "image"
  | "imageTarget"
  | "sprite"
  | "audio"
  | "camera"
  | "video"
  | "ambientLight"
  | "directionalLight"
  | "pointLight"
  | "spotLight"
  | "areaLight"
  | "instancedMesh"
  | "instanceSlot";

Defined in: types.ts:19

Built-in entity kinds recognized by the ECS factory registry. Each kind maps to an object factory in core/factories/objects/* that creates the baseline component set.