ds_grid_clear

Clears the grid with the given id to an indicated value.

Syntax:

ds_grid_clear(index, val);


Argument Description
index This index of the grid to clear.
val The new value for all grid cells.


Returns: N/A


Description

This function can be used to clear a given ds_grid to a specific value. All cells within the grid will then contain this value, which can be a real number or a string. The image below illustrates how this works:


Example:

ds_grid_resize(global.Grid, room_width / 32, room_height / 32);
ds_grid_clear(global.Grid, -1);

The above code will resize the ds_grid indexed in the global variable "Grid" and then clear it so that each cell holds the value -1.


Back: DS Grids
Next: ds_grid_set
© Copyright YoYo Games Ltd. 2018 All Rights Reserved