Skip to content

Instantly share code, notes, and snippets.

View zedrun00's full-sized avatar

zedrun zedrun00

View GitHub Profile
@EricEzaM
EricEzaM / flex_grid_container.gd
Last active February 1, 2025 18:42
A responsive grid container for GD script. Updates columns as you change the width.
tool
class_name FlexGridContainer
extends Container
var columns: int = 1 setget set_columns
func _notification(p_what):
match p_what: