私は完全に動作する次のコードを持っています:
updaterVariable = 0;
Tweener.addTween(this, {time:2, transition:"linear", updaterVariable:1000, onUpdate:tweenerUpdate});
updaterVariable の値を 0 から 1000 まで 2 秒で取得します。私の質問は、配列内の変数をトゥイーンする同様の方法があるかどうかです。たとえば、次のようになります。
updaterVariable[10] = 0;
Tweener.addTween(this, {time:2, transition:"linear", updaterVariable[10]:1000, onUpdate:tweenerUpdate});
上記のコードを試しましたが、うまくいきません。誰でも助けることができますか?