Godot Grid Array 1.0 Tools 4.1 Community
Submitted by user TheQuietCroc; MIT; 2024-12-23
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<bool> TestGridArray { get; private set; } = new();
[Export]
private Array<bool> _grid_array_ = new();
View files Download Submit an issue Recent Edits