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.
非常に単純な概念ですが、機能していないようです。これが私のコードです:
stage.clear(); stage.update();
単純なもの-何も起こりません。ドキュメントは役に立ちません。
これは私のために働くことになった:
stage.removeAllChildren(); stage.update();
そのステージにシェイプの子が1つだけあり、removeallchildrenを使用したくない場合は、次のように実行できます。
myshape.graphics.clear(); stage.update();
複数の場合は、その子をループします。