forked from Rowland/EG
太阳方位角及高度角自由调整
This commit is contained in:
parent
62aa0f6fbd
commit
f985a13555
@ -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
|
||||
|
||||
Binary file not shown.
@ -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("✓ 场景管理系统初始化完成")
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user