當前位置: 首頁>>代碼示例>>Python>>正文


Python NametagGlobals.getMax2dAlpha方法代碼示例

本文整理匯總了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()
開發者ID:ToontownBattlefront,項目名稱:Toontown-Battlefront,代碼行數:34,代碼來源:ShtikerBook.py


注:本文中的src.otp.nametag.NametagGlobals.getMax2dAlpha方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。