我将 MC 放在一个数组中,并希望稍后从索引中删除它,直到最后。
//Removeing MC from stage, from an index till the end
LISTmc.removeChild(listArray[clickedIndex+1]);
//Removing MC starting from an index till the end
listArray.splice(clickedIndex+1);
从舞台上移除 MC 的方法与从阵列中移除它的方法相同吗?