0
나는 배열에 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를 제거하는 방법은 어레이에서 제거하는 것입니까?