更新README,添加2025-10-27更新日志;优化层级渲染算法,支持多级分层渲染,修复虚拟列表相关bug;修改LevelRender组件以启用层级渲染;

This commit is contained in:
spe
2025-10-27 10:28:18 +08:00
parent 02dfcbbd73
commit 432cd56542
5 changed files with 485 additions and 167 deletions

View File

@@ -5,7 +5,7 @@ const { ccclass, property, menu } = _decorator;
@menu("性能优化/LevelRender")
export class LevelRender extends Component {
onLoad() {
this.node[`__enableLevelRender`] = true;
this.node[`__levelRender`] = true;
}
}