Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions crates/ladfile_builder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Native **Luau** (`.d.luau`) LAD backend (`luau` module, behind the new
`luau_files` feature) so Luau scripts can be type-checked with `luau-lsp`.
Exposes `lad_to_luau` (a pure `&LadFile -> String` conversion) and
`LuauLadPlugin` (a `LadFilePlugin` processor wired into `default_processors()`).
Brings no new dependencies. An opt-in `HandleBranding` configuration emits a
`Reg<T>` phantom brand for cast-free, statically-typed component access.

## [0.19.0](https://github.com/makspll/bevy_mod_scripting/compare/ladfile_builder-v0.18.0...ladfile_builder-v0.19.0) - 2026-01-25

### Added
Expand Down
3 changes: 3 additions & 0 deletions crates/ladfile_builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ readme.workspace = true
[features]
default = []
lua_language_server_files = ["lua_language_server_lad_backend"]
# Native Luau (.d.luau) definition-file backend. Pure string generation over the
# LAD types, so it needs no extra dependency.
luau_files = []

[dependencies]
bevy_app = { workspace = true, default-features = false, features = [] }
Expand Down
2 changes: 2 additions & 0 deletions crates/ladfile_builder/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
//! Parsing definitions for the LAD (Language Agnostic Decleration) file format.
#[cfg(feature = "luau_files")]
pub mod luau;
pub mod plugin;

use bevy_ecs::{
Expand Down
Loading
Loading