デバッグ表示

2023-05-02

debugMode

FlameGameクラスのdebugModetrueにすると、各コンポーネントの位置やサイズが描画されるようになります。

公式ドキュメント https://docs.flame-engine.org/latest/flame/game.html#debug-mode

FpsTextComponent

FpsTextComponentを使うと現在の FPS を表示することができます。

公式ドキュメント https://docs.flame-engine.org/latest/flame/other/debug.html
APIリファレンス https://pub.dev/documentation/flame/latest/components/FpsTextComponent-class.html

動かす

debugModeFpsTextComponentの使用例です。

    debugMode = true;

    await add(
      FpsTextComponent(),
    );

これで左上に FPS が、各コンポーネントにデバッグ情報が表示されます。
(四角形の表示方法は四角形を参照)

© 2023 tnantoka