本文整理汇总了Python中pyglet.text.Label.identifier方法的典型用法代码示例。如果您正苦于以下问题:Python Label.identifier方法的具体用法?Python Label.identifier怎么用?Python Label.identifier使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyglet.text.Label
的用法示例。
在下文中一共展示了Label.identifier方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: build
# 需要导入模块: from pyglet.text import Label [as 别名]
# 或者: from pyglet.text.Label import identifier [as 别名]
def build(self):
if not self.hidden and self.window.debug:
batch = self.fg_batch
self.stat_labels_l = []
self.stat_labels_r = []
y = self.y
yo = 0
x = self.x
mainstat = self.owner.mainstat
if mainstat == "str":
c = lookup_color("darkred")
elif mainstat == "agi":
c = lookup_color("darkgreen")
elif mainstat == "int":
c = lookup_color("darkblue")
else:
c = lookup_color("yellow")
label_l = Label(
text="Main stat:", font_name=None, font_size=10,
x=x, y=y-yo, anchor_x="left", anchor_y="top",
color=lookup_color("black"), batch=batch
)
label_r = Label(
text=mainstat, font_name=None, font_size=10,
x=x+self.width, y=y-yo,
anchor_x="right", anchor_y="top",
color=c, batch=batch
)
self.stat_labels_l.append(label_l)
self.stat_labels_l.append(label_r)
yo += 16
for stat, value in self.owner.base_stats.items():
modvalue = self.owner.stats.get(stat)
label_l = Label(
text=str(stat), font_name=None, font_size=8,
x=x, y=y-yo, anchor_x="left", anchor_y="top",
color=lookup_color("black", opacity=255),
batch=batch
)
label_r = Label(
text=str(modvalue), font_name=None, font_size=8,
x=x+self.width, y=y-yo,
anchor_x="right", anchor_y="top",
color=lookup_color("darkblue", opacity=255),
batch=batch
)
label_r.identifier = str(stat)
self.stat_labels_l.append(label_l)
self.stat_labels_r.append(label_r)
yo += 12
self.height = yo
self.rectangle = create_rectangle(
self.x, self.y,
self.width, self.height,
centered=False
)