Type alias SpatialHashGrid
SpatialHashGrid: { isSpatialHashGrid: boolean; getBox() => Box3; getCellNear(x,
y,
mathOperation?) => [number, number]; } & AddDebug
Type declaration
-
isSpatialHashGrid: boolean
-
getBox:function
- getBox(): Box3
-
Returns Box3
-
getCellNear:function
- getCellNear(x, y, mathOperation?): [number, number]
-
Returns [number, number]
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.