Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
KineticJSを使用して画像を読み込んだ後、画像を元に戻すにはどうすればよいですか(アイテムは前面に表示される前に読み込まれます)。
背景のKinetic.Imageといくつかのテキストオブジェクトをレイヤーにロードしています。
どちらの順序で呼び出しを行っても、レイヤーの後ろに配置したい場合は、常に画像が前面に表示されます。
これをどのように行うべきかについてのアドバイスはありますか?
ありがとう
すべてのアイテムが同じレイヤーにあると仮定すると、次のようになります。
image.moveToBottom(); layer.draw(); stage.draw(); //this one is not necessary really but threw it in just in case.
これは、画像のonload関数に含まれます(最後に)。