1
0
forked from Rowland/EG

太阳方位角及高度角自由调整

This commit is contained in:
Hector 2025-08-04 16:45:52 +08:00
parent 62aa0f6fbd
commit f985a13555
3 changed files with 1 additions and 4 deletions

View File

@ -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

View File

@ -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("✓ 场景管理系统初始化完成")