Skip to main content

lean_ctx/core/godot/
mod.rs

1//! Godot-specific parsers and helpers.
2//!
3//! GDScript (`.gd`) source is handled by the generic tree-sitter pipeline; this
4//! module covers the Godot-native *resource* formats that are not source code
5//! but still carry navigable graph dependencies — most importantly the
6//! `PackedScene` text format (`.tscn`) which links scenes to their scripts. (#316)
7
8pub mod scene;