各要素間に等間隔の 27 個の要素を持つスプライト シート (png ファイル) があります。
+----------------+
| 1 2 3
| 4 5 6
|
|
|
|
|
|
|
| 24 25 26
すべての要素を配列に挿入したい これを行う方法を見つけた 正常に動作する
var ElemObjects = [];
ElemObjects.push(new Elem(0,0));
ElemObjects.push(new Elem(380,0));
ElemObjects.push(new Elem(760,0));
ElemObjects.push(new Elem(0,340));
ElemObjects.push(new Elem(380,340));
ElemObjects.push(new Elem(760,340));
ElemObjects.push(new Elem(0,680))
ElemObjects.push(new Elem(380,680))
ElemObjects.push(new Elem(760,680))
等々
forループを使用して同じことをしたい私の問題は、forループ内のx座標とy座標を変更する必要があるかどうかわからないロジックにあります
for(var i =0; i < 26; i++){
ElemObjects[ElemObjects.length] = new Elem(Xsr,Ysr);
Xsr=Xsr+380;
}
助言がありますか