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.
Box2D スプライト本体の動きに問題があります。問題は、左ボタンを押すとスプライトが左に移動し、ボタンを離すとスプライトが停止することです。
移動のロジックは知っていますが、連続移動用の左ボタンを作成する方法がわかりません。
ボタンを押すと、ブール変数をtrueに設定し、更新/ティックメソッドでこれを行うだけです:
If(boolVariable == true) { sprite.position = ccp(sprite.position.x - 0.5 , sprite.position.y); }
これにより、スプライトが引き続き左に移動するはずです。