1. 规范了一些Live2D实例代码的内容

2. 增加了窗口大小随着模型大小变化而变化的功能
This commit is contained in:
Misaki
2025-12-05 17:26:18 +08:00
parent 5c007aa8d9
commit 09a4492f07
12 changed files with 120 additions and 80 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ int main(int argc, char *argv[])
// 设置日志过滤规则,将这个特定分类的警告级别设置为“关闭”
QLoggingCategory::setFilterRules("qt.multimedia.ffmpeg.libsymbolsresolver.warning=false");
#endif
GLCore w(360, 480);
GLCore w(360, 480); // 创建默认的窗口
w.show();
return a.exec();
return QApplication::exec();
}