当前位置: 首页>>代码示例>>Python>>正文


Python Frame.update方法代码示例

本文整理汇总了Python中client.ui.controls.Frame.update方法的典型用法代码示例。如果您正苦于以下问题:Python Frame.update方法的具体用法?Python Frame.update怎么用?Python Frame.update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在client.ui.controls.Frame的用法示例。


在下文中一共展示了Frame.update方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: update

# 需要导入模块: from client.ui.controls import Frame [as 别名]
# 或者: from client.ui.controls.Frame import update [as 别名]
    def update(self):
        p = self.player
        if not p: return

        nick = p.account.username
        if self.dropped:
            if self.fleed:
                prefix = u'(逃跑)'
            else:
                prefix = u'(掉线)'

            nick = prefix + nick

        self.caption = nick
        char = self.character

        if char:
            meta = char.ui_meta
            self.bg = meta.port_image
            self.update_bg()
            self.set_charname(meta.char_name)
            if self._last_balloon != meta.description:
                self.init_balloon(meta.description, (2, 74, 145, 96))
                self._last_balloon = meta.description

        self.bot_reserve = 74
        self.gray_tex = None
        Frame.update(self)
        self.update_position()
        self.update_color()
        self.tagarrange()
开发者ID:AojiaoZero,项目名称:thbattle,代码行数:33,代码来源:game_controls.py

示例2: update

# 需要导入模块: from client.ui.controls import Frame [as 别名]
# 或者: from client.ui.controls.Frame import update [as 别名]
    def update(self):
        p = self.player
        if not p:
            return

        nick = u"<%s>" % p.account.username
        if self.dropped:
            if self.fleed:
                prefix = u"(逃跑)"
            else:
                prefix = u"(掉线)"

            nick = prefix + nick

        self.caption = nick
        char = self.character

        if char:
            meta = char.ui_meta
            self.bg = L(meta.port_image)
            self.update_bg()
            self.set_charname(meta.name)
            desc = char_desc(char)
            if self._last_balloon != desc:
                self.balloon.set_balloon(desc, (2, 74, 145, 96))
                self._last_balloon = desc

        self.bot_reserve = 74
        self.gray_tex = None
        Frame.update(self)
        self.update_position()
        self.update_color()
        self.tagarrange()
开发者ID:feisuzhu,项目名称:thbattle,代码行数:35,代码来源:game_controls.py


注:本文中的client.ui.controls.Frame.update方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。