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

A simple add-on that adds generic grid nodes for quickly building grid-based systems, in 2D or 3D.Adds 2 nodes: Grid2D (x and y axis) and Grid3D (x and z axis), all of which contain cells that have values, and can be infinite or limited to certain cells.
Criss-Cross
A simple Godot addon that adds generic grid nodes for quickly building grid-based systems, in 2D or 3D.
✨ Nodes
Grid2D
A grid in the X and Y axis which contains values for each cell. It can be infinite
, or generate cells with regions
.
In the example at scenes/demos/inventory
, it is used to make an inventory system similar to those found in games like Escape from Tarkov or Kenshi.
Grid3D
A grid in the X and Z axis which contains values for each cell. It can be infinite
, or generate cells with regions
.
In the example at scenes/demos/building_3d
, it is used to make a (terrible looking) building system.
❓ How to use
Check out the built-in documentation in your Godot project for explanations of every relevant function and variable.
You can find it by searching for
Grid2D
orGrid3D
with theSearch help
button in the script editor or by pressing thedocumentation
button in the node's inspector.\
🔧 Installation Steps
- Download the project files.
- Move the
criss-cross
folder into your/addons
folder within your Godot project. - Enable the addon through the project settings.
A simple add-on that adds generic grid nodes for quickly building grid-based systems, in 2D or 3D.
Adds 2 nodes: Grid2D (x and y axis) and Grid3D (x and z axis), all of which contain cells that have values, and can be infinite or limited to certain cells.
Reviews
Quick Information

A simple add-on that adds generic grid nodes for quickly building grid-based systems, in 2D or 3D.Adds 2 nodes: Grid2D (x and y axis) and Grid3D (x and z axis), all of which contain cells that have values, and can be infinite or limited to certain cells.