Skip to content
Merged
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
8 changes: 8 additions & 0 deletions docs/en/limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ Constraints and platform-specific caveats to be aware of when shipping with the
> [!NOTE]
> This is a living document. Items are added as they are confirmed; wording and coverage may change as the plugin evolves.

## Not Yet Implemented

> [!WARNING]
> - **Text parts** — not drawn. The runtime reserves the part's slot in the draw plan but supplies no glyphs (glyph layout and rasterization are the player's job), and the plugin has no Godot text pass yet.
> - **9-slice parts** — not drawn. The runtime builds the whole grid into its dedicated `Nines` buffers, but the plugin does not read them yet, so the part renders as nothing rather than as a stretched cell.

Both part types still occupy their place in the draw order, so an animation that uses them plays with those parts missing rather than failing. If you ship one, replace it with an ordinary part at authoring time.

## Platforms & Export

The plugin ships in two build variants — **GDExtension** and **custom module** — and both can be exported to every Godot target. Build and execution are actively verified on **Windows / macOS**; the other targets are supported but less frequently exercised. See [Build Guide](setup/build.md) for the export flow of each.
Expand Down
8 changes: 8 additions & 0 deletions docs/ja/limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
> [!NOTE]
> このドキュメントは随時更新されます。確認できた項目から追記しており、プラグインの進化に応じて記述や範囲が変わる場合があります。

## 未実装の機能

> [!WARNING]
> - **テキストパーツ** — 描画されません。ランタイムは描画プラン上の位置を確保しますが、グリフは提供しません(グリフのレイアウトとラスタライズは Player 側の責務です)。本プラグインには Godot でのテキスト描画パスがまだありません。
> - **9 スライスパーツ** — 描画されません。ランタイムはグリッド全体を専用の `Nines` バッファに構築しますが、本プラグインはまだそれを読んでいないため、セルが引き伸ばされた状態ではなく何も表示されません。

どちらのパーツ種別も描画順序上の位置は保持されるため、これらを使ったアニメーションはエラーにならず、該当パーツが欠けた状態で再生されます。出荷するアニメーションでは、作画時に通常パーツへ置き換えてください。

## プラットフォームとエクスポート

本プラグインは **GDExtension** と **カスタムモジュール** の2つのビルド形態で提供され、いずれも Godot の全ターゲットへエクスポートできます。ビルドと実行は **Windows / macOS** で継続的に確認しています。その他のターゲットも対応していますが、検証頻度は低めです。各プラットフォームのエクスポート手順は [ビルドガイド](setup/build.md) を参照してください。
Expand Down