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


Python Frame.update_position方法代码示例

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


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

示例1: update_position

# 需要导入模块: from client.ui.controls import Frame [as 别名]
# 或者: from client.ui.controls.Frame import update_position [as 别名]
    def update_position(self):
        Frame.update_position(self)
        w, h = self.width, self.height
        ax, ay = self.abs_coords()
        self._gcp_framevlist.vertices[:] = flatten([
            rectv2f(2, 2, w-4, 54-2, ax, ay),  # equip box
            rrectv2f(2.5, 2.5, 4*36, 52, ax, ay),  # equip box border
            rectv2f(w-2-32, 66, 32, 22, ax, ay),  # cardnum box
            rrectv2f(w-2-32, 66, 32, 22, ax, ay),  # cardnum box border
        ])

        full = rectv2f(0, 0, w, h, ax, ay)
        self._highlight_disabled.vertices[:] = full
        self._highlight.vertices[:] = full

        if self.actor_frame:
            self.actor_frame.set_position(self.x - 6, self.y - 4)

        if self.turn_frame:
            self.turn_frame.set_position(self.x - 6, self.y - 4)
开发者ID:AojiaoZero,项目名称:thbattle,代码行数:22,代码来源:game_controls.py


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