0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PixiJSに開発用のChrome機能拡張があるのを今日知った

Last updated at Posted at 2024-10-25

Pixi.js開発用機能拡張には同じ名前の機能拡張が2種類あり、こちらは簡易版。
Chrome ウェブストアでの見分け方はDevtoolstが小文字。

まずは機能拡張のインストール

インストールすると、開発者コンソールにPixiJSというタブが出現する

スクリーンショット 2024-10-25 15.28.44.png

コードに追記

Pixi.jsを初期化した後に以下のコードを追加する

const app = new PIXI.Application(...) // Pixi.jsを初期化

globalThis.__PIXI_APP__ = app; // ← 追加!

できること

  • 要素の表示非表示
  • 要素のプロパティを変更
  • 要素をダブルクリックすると、コンソールドロワーに要素を追加できる
  • 要素を選択してからコンソールドロワーで$pixiと入力すると要素のプロパティにアクセスできる

その他詳細

この記事の続き

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?