Check out our latest project ✨ OpenChapter.io: free ebooks the way its meant to be 📖

Godot Grid Array

An asset by TheQuietCroc
The page banner background of a mountain and forest
Godot Grid Array thumbnail image
Godot Grid Array thumbnail image
Godot Grid Array thumbnail image
Godot Grid Array hero image

Quick Information

0 ratings
Godot Grid Array icon image
TheQuietCroc
Godot Grid Array

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();

Supported Engine Version
4.1
Version String
1.0
License Version
MIT
Support Level
community
Modified Date
4 months ago
Git URL
Issue URL

Godot Grid Array

README Godot v4.x

README The Godot logo made with a 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

README An example of the default values of the grid array. Columns, rows, and the number of entries in the array are all set to 1. README An example of a 5 column and 3 row grid array with no check marks. README An example of a 3 column and 5 row grid array with some check marks.

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 TestGridArray { get; private set; } = new();

[Export]
private Array _grid_array_ = new();

Reviews

0 ratings

Your Rating

Headline must be at least 3 characters but not more than 50
Review must be at least 5 characters but not more than 500
Please sign in to add a review

Quick Information

0 ratings
Godot Grid Array icon image
TheQuietCroc
Godot Grid Array

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();

Supported Engine Version
4.1
Version String
1.0
License Version
MIT
Support Level
community
Modified Date
4 months ago
Git URL
Issue URL

Open Source

Released under the AGPLv3 license

Plug and Play

Browse assets directly from Godot

Community Driven

Created by developers for developers