Animator.prototype.setIndex()

setIndex() メソッドは、アニメーションのインデックス番号を設定します。また、そのときの状態で各図形を描画します。

Animator オブジェクトが生成されたときのインデックス番号は 0 で、アニメーションが進むごとに自動的に増えていきます。このメソッドを使用しない限りインデックス番号が減ったり 0 に戻ったりすることはありません。

構文

setIndex(index)

引数

index
0 以上の数値です。0 未満の値や数字以外を指定したときはインデックス番号は 0 になります。

返値

なし

const core = new jmotion.Core("#board");
const animator = new jmotion.Animator(core);
const before = animator.getIndex();
animator.setIndex(10);
const after = animator.getIndex();

// before = 0
// after = 10