feat: add GROW and SPORE animation

This commit is contained in:
2026-01-17 12:21:48 +08:00
parent df3699c791
commit 940f0b11a1
6 changed files with 49 additions and 4 deletions

View File

@@ -35,7 +35,8 @@ bool WindowManager::Initialize(Config& config) {
"创建渲染器失败: %s", SDL_GetError());
return false;
}
// 开启混合模式
SDL_SetRenderDrawBlendMode(m_renderer, SDL_BLENDMODE_BLEND);
if (config.window.vsync) {
SDL_SetRenderVSync(m_renderer, true);
} else {