我想创建一个窗口,Qt3DWindow
在后面和QPushButton
上面一些。但是,只Qt3DWindow
显示动画,QPushButton
看不到 s。我也想有Qt3DWindow
功能和QPushButton
s (所以我可以点击后面的按钮或 3D 动画)。Qt3DWindow
仅当我将透明度设置为较低值时才能看到按钮。当然,在这种情况下,按钮只能看到但没有功能。
class MainWindow(QMainWindow):
def __init__(self, *args):
QMainWindow.__init__(self, *args)
self.window = Window() # Qt3DExtras.Qt3DWindow
self.container = self.createWindowContainer(self.window)
self.buttons = Buttons()
self.layout().addWidget(self.buttons.view) # QtWidgets.QGraphicsView
self.layout().addWidget(self.container)