DeleteMove改名为DeleteShift

This commit is contained in:
2025-04-23 00:15:19 +08:00
parent 029a23a97f
commit cf494b4f86
6 changed files with 9 additions and 9 deletions

View File

@@ -623,7 +623,7 @@ namespace hgl
if(pos<0)
return;
transform_list.DeleteMove(pos); //使用DeleteMove是为了保持顺序(Delete可能会拿最后一个数据移到前面而本类需要保持顺序)
transform_list.DeleteShift(pos); //使用DeleteShift是为了保持顺序(Delete可能会拿最后一个数据移到前面而本类需要保持顺序)
UpdateVersion();
}