本文整理匯總了Python中src.otp.nametag.NametagGlobals.getMax2dAlpha方法的典型用法代碼示例。如果您正苦於以下問題:Python NametagGlobals.getMax2dAlpha方法的具體用法?Python NametagGlobals.getMax2dAlpha怎麽用?Python NametagGlobals.getMax2dAlpha使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類src.otp.nametag.NametagGlobals
的用法示例。
在下文中一共展示了NametagGlobals.getMax2dAlpha方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: enter
# 需要導入模塊: from src.otp.nametag import NametagGlobals [as 別名]
# 或者: from src.otp.nametag.NametagGlobals import getMax2dAlpha [as 別名]
def enter(self):
if base.config.GetBool('want-qa-regression', 0):
self.notify.info('QA-REGRESSION: SHTICKERBOOK: Open')
if self.entered:
return
self.entered = 1
messenger.send('releaseDirector')
messenger.send('stickerBookEntered')
base.playSfx(self.openSound)
base.disableMouse()
base.render.hide()
base.setBackgroundColor(0.05, 0.15, 0.4)
base.setCellsAvailable([base.rightCells[0]], 0)
self.oldMin2dAlpha = NametagGlobals.getMin2dAlpha()
self.oldMax2dAlpha = NametagGlobals.getMax2dAlpha()
NametagGlobals.setMin2dAlpha(0.8)
NametagGlobals.setMax2dAlpha(1.0)
self.__isOpen = 1
self.__setButtonVisibility()
self.show()
self.showPageArrows()
self.tempLeft = 'arrow_left'
self.tempRight = 'arrow_right'
if not self.safeMode:
self.accept('shtiker-page-done', self.__pageDone)
self.accept(ToontownGlobals.StickerBookHotkey, self.__close)
self.accept(ToontownGlobals.OptionsPageHotkey, self.__close)
self.pageTabFrame.show()
self.pages[self.currPageIndex].enter()