Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser




Quick Information

Display boolean arrays as a grid of checkboxes in the inspector.UsageInclude `GridArray` or `grid_array` (not case-sensitive) in your exported Array's name.GDScript - Examplesgdscript@exportvar Grid_arrayExample: Array@exportvar gridArraysample: ArrayC# - Examplescsharp[Export]public Array<bool> TestGridArray { get; private set; } = new();[Export]private Array<bool> _grid_array_ = new();
Godot Grid Array
Display boolean arrays as a grid of checkboxes in the inspector.
Usage
Include GridArray
or grid_array
(not case-sensitive) in your exported Array's name.
GDScript
@export
var Grid_arrayExample: Array
@export
var gridArraysample: Array
C#
[Export]
public Array<bool> TestGridArray { get; private set; } = new();
[Export]
private Array<bool> _grid_array_ = new();
Screenshots
Display boolean arrays as a grid of checkboxes in the inspector.
Usage
Include `GridArray` or `grid_array` (not case-sensitive) in your exported Array's name.
GDScript - Examples
gdscript
@export
var Grid_arrayExample: Array
@export
var gridArraysample: Array
C# - Examples
csharp
[Export]
public Array
[Export]
private Array
Reviews
Quick Information

Display boolean arrays as a grid of checkboxes in the inspector.UsageInclude `GridArray` or `grid_array` (not case-sensitive) in your exported Array's name.GDScript - Examplesgdscript@exportvar Grid_arrayExample: Array@exportvar gridArraysample: ArrayC# - Examplescsharp[Export]public Array<bool> TestGridArray { get; private set; } = new();[Export]private Array<bool> _grid_array_ = new();