Added game files from TMP4

This commit is contained in:
2023-07-21 21:55:58 +03:00
parent bb44b31af9
commit eb47a22455
9325 changed files with 276198 additions and 69890 deletions

View File

@ -124,7 +124,7 @@ class TargetBoard(ui.ThinBoard):
self.nameLength = 0
self.vid = 0
self.eventWhisper = None
self.isShowButton = FALSE
self.isShowButton = False
self.__Initialize()
self.ResetTargetBoard()
@ -138,7 +138,7 @@ class TargetBoard(ui.ThinBoard):
self.nameString = ""
self.nameLength = 0
self.vid = 0
self.isShowButton = FALSE
self.isShowButton = False
def Destroy(self):
self.eventWhisper = None
@ -286,7 +286,7 @@ class TargetBoard(ui.ThinBoard):
def ShowDefaultButton(self):
self.isShowButton = TRUE
self.isShowButton = True
self.showingButtonList.append(self.buttonDict[localeInfo.TARGET_BUTTON_WHISPER])
self.showingButtonList.append(self.buttonDict[localeInfo.TARGET_BUTTON_EXCHANGE])
self.showingButtonList.append(self.buttonDict[localeInfo.TARGET_BUTTON_FIGHT])
@ -295,7 +295,7 @@ class TargetBoard(ui.ThinBoard):
button.Show()
def HideAllButton(self):
self.isShowButton = FALSE
self.isShowButton = False
for button in self.showingButtonList:
button.Hide()
self.showingButtonList = []
@ -370,7 +370,7 @@ class TargetBoard(ui.ThinBoard):
def OnPressEscapeKey(self):
self.OnPressedCloseButton()
return TRUE
return True
def IsShowButton(self):
return self.isShowButton