diff --git a/RenderPipelineFile/toolkit/plugin_configurator/main.py b/RenderPipelineFile/toolkit/plugin_configurator/main.py index ea560ab2..9410f080 100644 --- a/RenderPipelineFile/toolkit/plugin_configurator/main.py +++ b/RenderPipelineFile/toolkit/plugin_configurator/main.py @@ -99,7 +99,7 @@ class PluginConfigurator(QMainWindow, Ui_MainWindow): # 启动通信文件监听线程 comm_thread = Thread(target=self.communication_thread, args=()) - comm_thread.daemon = True # 设置为守护线程,主程序退出时自动结束 + comm_thread.daemon = True # 设置为守护线 程,主程序退出时自动结束 comm_thread.start() def closeEvent(self, event): # noqa diff --git a/scene/__pycache__/scene_manager.cpython-312.pyc b/scene/__pycache__/scene_manager.cpython-312.pyc index 456f3fef..b46907fc 100644 Binary files a/scene/__pycache__/scene_manager.cpython-312.pyc and b/scene/__pycache__/scene_manager.cpython-312.pyc differ diff --git a/scene/scene_manager.py b/scene/scene_manager.py index d77f5211..e5072cd7 100644 --- a/scene/scene_manager.py +++ b/scene/scene_manager.py @@ -15,7 +15,6 @@ from panda3d.core import ( from panda3d.egg import EggData, EggVertexPool from direct.actor.Actor import Actor from QPanda3D.Panda3DWorld import get_render_pipeline -from scene.animation_manager import AnimationManager class SceneManager: """场景管理器 - 统一管理场景中的所有元素""" @@ -32,8 +31,6 @@ class SceneManager: self.Spotlight = [] self.Pointlight = [] - # 初始化动画管理器 - self.animation_manager = AnimationManager(world) print("✓ 场景管理系统初始化完成")