feat: 完善 Face 一级关系编辑和稳定性

This commit is contained in:
2026-08-04 09:35:39 +08:00
parent bb44e3920d
commit 5799d5d813
29 changed files with 6295 additions and 189 deletions
+3
View File
@@ -4,9 +4,11 @@ import os
from PyInstaller.utils.hooks import collect_all
project_root = os.path.abspath(os.path.join(SPECPATH, '..'))
icon_path = os.path.join(project_root, 'assets', 'ico', 'logo_new.ico')
datas = [(os.path.join(project_root, 'assets'), 'assets')]
binaries = []
hiddenimports = [
'step_editor.isolated_edit_worker',
'PySide6.QtCore',
'PySide6.QtGui',
'PySide6.QtWidgets',
@@ -65,6 +67,7 @@ exe = EXE(
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon=icon_path,
)
coll = COLLECT(
exe,