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.
アプリケーション FPS の 10% で実行する必要がある場合、個々のビットマップ アニメーションの FRAME SPEED を設定するにはどうすればよいですか?
ありがとう
スプライトシートのコンストラクターでアニメーションの頻度を設定できます。
例えば:
animations: { // start, end, next, frequency jump: [9,12,"run",2] }
また
animations: { jump: { frames: [8,9,10,9,8], next: "run", frequency: 2 } }
デフォルトでは1なので、10を入れると10倍遅くなります。