Axes Enumeration

public enum Axes

Specifies the axes that a Streamable Grid functions on. This determines whether Layers are factored into calculations involving the Grid as well as which components from the Player's position are tracked in order to determine their Cell location and trigger dynamic streaming functionality (when an Active Grid is used).

Fields

Name Value Description
Three_Dimensional 0 More than 1 Layer IS possible on the Grid and Layers ARE factored into calculations. When using an Active Grid, the player's Z position is used to determine the Row of the Cell they are in, the X position determines the Column, and the Y position determines the Layer.
Two_Dimensional_On_XY_Axes 1 More than 1 Layer IS NOT possible on the Grid and Layers ARE NOT factored into calculations. When using an Active Grid, the player's Y position is used to determine the Row of the Cell they are in while the X position determines the Column. The Layer is always 1.
Two_Dimensional_On_XZ_Axes 2 More than 1 Layer IS NOT possible on the Grid and Layers ARE NOT factored into calculations. When using an Active Grid, the player's Z position is used to determine the Row of the Cell they are in while the X position determines the Column. The Layer is always 1.