- Mesaj
- 810
- Çözümler
- 28
- Beğeni
- 748
- Puan
- 839
- Ticaret Puanı
- 0
Şu şekilde tuşa atamada bir sorun var mı ben göremedim de çünkü board açılmıyor.
Notlar
game.py
interfacemodule.py
Notlar
Kod:
- Interfacemodule importlarda ekli
- Eksik ekleme de yok tüm dosyalar eksiksiz eklendi
- Server tarafında, clientde hiçbir syserr yok
game.py
Python:
onPressKeyDict[app.DIK_F5] = lambda : self.interface.ToggleSwitchbotWindow()
interfacemodule.py
Python:
if app.ENABLE_SWITCHBOT:
def ToggleSwitchbotWindow(self):
if self.wndSwitchbot.IsShow():
self.wndSwitchbot.Close()
else:
self.wndSwitchbot.Open()
def RefreshSwitchbotWindow(self):
if self.wndSwitchbot and self.wndSwitchbot.IsShow():
self.wndSwitchbot.RefreshSwitchbotWindow()
def RefreshSwitchbotItem(self, slot):
if self.wndSwitchbot and self.wndSwitchbot.IsShow():
self.wndSwitchbot.RefreshSwitchbotItem(slot)