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
YARD is a Godot 4 plugin for organizing collections of Resources in a spreadsheet-like editor, and querying them at runtime through a lightweight API.WHAT IT GIVES YOU- Stable string IDs for your resources, no autoload boilerplate- A spreadsheet-style editor tab to browse and edit properties- Class restriction and automatic sync from a directory- A baked property index for zero-cost runtime filtering- Synchronous, blocking, or threaded loadingSee the README.md and the in-editor Registry class reference for usage examples and the full API.
@tool extends AcceptDialog
const Namespace := preload("res://addons/yard/editor_only/namespace.gd") const MarkdownLabel := Namespace.MarkdownLabel
@onready var markdown_label: MarkdownLabel = %MarkdownLabel
func _ready() -> void: if Engine.is_editor_hint(): var mono: Font = get_theme_font(&"font", &"CodeEdit") markdown_label.add_theme_font_override(&"mono_font", mono) markdown_label.add_theme_color_override(&"table_even_row_bg", get_theme_color(&"prop_section", &"Editor")) markdown_label.add_theme_color_override(&"table_odd_row_bg", get_theme_color(&"separator_color", &"Editor")) markdown_label.h2.font_color = get_theme_color(&"accent_color", &"Editor") markdown_label.h3.font_color = get_theme_color(&"font_focus_color", &"Editor")
#markdown_label.display_file()
YARD is a Godot 4 plugin for organizing collections of Resources in a spreadsheet-like editor, and querying them at runtime through a lightweight API.
WHAT IT GIVES YOU
- Stable string IDs for your resources, no autoload boilerplate
- A spreadsheet-style editor tab to browse and edit properties
- Class restriction and automatic sync from a directory
- A baked property index for zero-cost runtime filtering
- Synchronous, blocking, or threaded loading
See the README.md and the in-editor Registry class reference for usage examples and the full API.
Reviews
Quick Information
YARD is a Godot 4 plugin for organizing collections of Resources in a spreadsheet-like editor, and querying them at runtime through a lightweight API.WHAT IT GIVES YOU- Stable string IDs for your resources, no autoload boilerplate- A spreadsheet-style editor tab to browse and edit properties- Class restriction and automatic sync from a directory- A baked property index for zero-cost runtime filtering- Synchronous, blocking, or threaded loadingSee the README.md and the in-editor Registry class reference for usage examples and the full API.