我对这个 VEX 脚本有疑问。
@
创建属性而不是变量。
f[]@myList; // create list attribut
float pavW = 0.0;
for( int i = 1 ; i < 11 ; i++){
string path = "../widthPav" + itoa(i);
pavW = ch(path); // take the value in the specific channel
if (i == 1){
push(@myList,pavW); //add new component of value to myList
}
if ( pavW > 0){
foreach ( int j ; float value ; @myList){
if ( pavW == value){
break;
}else{
push(@myList,pavW); //add new component...
break;
}
}
}
}
我想为 pavW
ifmyList
的pavW
元素与myList
. 结果并不如预期。