Type alias SpatialHashGrid

SpatialHashGrid: {
    isSpatialHashGrid: boolean;
    getBox() => Box3;
    getCellNear(x, y, mathOperation?) => [number, number];
} & AddDebug

The SpatialHashGrid is responsible for spatial partitioning. It can be used to keep track of objects in a scene when performance is a concern.

For example, it allows for quick lookup of objects in a very large scene.

However, for simpler apps - disabling this feature is recommended.

Type declaration

  • isSpatialHashGrid: boolean
  • getBox:function
  • getCellNear:function
    • Parameters

      Returns [number, number]

Generated using TypeDoc