本文整理汇总了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)