 | IGridTPointValues Property |
A enumerable containing all the values of this grid.
Namespace:
Gamelogic.Grids
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
SyntaxIEnumerable Values { get; }Property Value
Type:
IEnumerable
Examples
For example, the following two pieces of code do the same:
foreach(var point in grid)
{
Debug.Log(grid[point]);
}
foreach(var value in grid.Values)
{
Debug.Log(value);
}
See Also