当我在游戏中使用“ swtichbot bonuschanger”时遇到了该错误
回溯(最近通话最近一次):
OnToggleDown中的文件“ ui.py”,第1506行
“激活”中第115行的文件“ switchbot.py”
AttributeError 'int'对象没有属性'gameWindow'
ui.py
def OnToggleDown(self):
if self.eventDown:
self.eventDown() #--Line 1506
swtichbot.py
def 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
答案 0 :(得分:0)
我更改了此行
if self.parentWindow.parentWindow.gameWindow != None: #--line 115
与此一起
if self.sub_parent.parentWindow.parentWindow.gameWindow != None:
非常感谢您的时间,您最好的!!