feat(editor): 添加 ECS UI 系统和编辑器更新优化 (#238)

This commit is contained in:
YHH
2025-11-26 11:08:10 +08:00
committed by GitHub
parent 3fb6f919f8
commit 7b14fa2da4
62 changed files with 8745 additions and 235 deletions

View File

@@ -0,0 +1,22 @@
.startup-logo-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: #1e1e1e;
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.5s ease-out;
}
.startup-logo-container.fade-out {
opacity: 0;
pointer-events: none;
}
.startup-logo-canvas {
display: block;
}