Animator.prototype.getStatus()

getStatus() メソッドは、アニメーションの実行ステータスを取得します。

構文

getStatus()

引数

なし

返値

以下のようなプロパティを持ったオブジェクトを返します。

runnable
Animator.prototype.props または Animator.prototype.arms に状態一覧が設定されている場合は true が、それ以外の場合は false が格納されます。
running
アニメーションが実行中の場合は true が、それ以外の場合は false が格納されます。

const core = new jmotion.Core("#board");
const animator = new jmotion.Animator(core);
const status = animator.getStatus();

// status = {
//     "runnable": false,
//     "running": false,
// }