当我在游戏中使用“swtichbot bonuschanger”时出现该错误回溯(最近一次调用最后一次):OnToggleDown 中的文件“ui.py”,第 1506 行文件“switchbot.py”,第 115 行,在 ActivateAttributeError 'int' 对象没有属性 'gameWindow'用户界面def OnToggleDown(self): if self.eventDown: self.eventDown() #--Line 1506开关机.pydef Activate(self): self.sub_parent.resetSwitch() self.Status_new.SetColor(COLOR_ACTIVE) self.sub_parent.StatusBar.SetColor(COLOR_ACTIVE) self.sub_parent.StatusText.SetText("Activ") self.Starter.SetText("Switcher slot ("+str(self.index+1)+")") self.sub_parent.boni_active = 1 if self.parentWindow.parentWindow.gameWindow != None: #--line 115 self.sub_parent.blockBar.swib_normal.SetColor(COLOR_ACTIVE)pass我如何编辑它们以不再出现此错误?只是一点帮助,我是新手:D
1 回答
慕勒3428872
TA贡献1848条经验 获得超6个赞
我改变了这条线
if self.parentWindow.parentWindow.gameWindow != None: #--line 115
有了这个
if self.sub_parent.parentWindow.parentWindow.gameWindow != None:
非常感谢您的时间,您是最棒的!!!
添加回答
举报
0/150
提交
取消