本文整理汇总了Python中Button.Button.set_position方法的典型用法代码示例。如果您正苦于以下问题:Python Button.set_position方法的具体用法?Python Button.set_position怎么用?Python Button.set_position使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Button.Button
的用法示例。
在下文中一共展示了Button.set_position方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setup_menu_screen
# 需要导入模块: from Button import Button [as 别名]
# 或者: from Button.Button import set_position [as 别名]
def setup_menu_screen(self):
title = TextBox(sf.Texture.from_file("res/title.png"))
title.origin = title.local_bounds.center
title.set_position((self.window.size.x / 2, (self.window.size.y / 3)))
self.button_dict['title'] = title
assaultgunbutton = Button(sf.Texture.from_file("res/AssaultGunButton.png"))
assaultgunbutton.origin = assaultgunbutton.local_bounds.center
assaultgunbutton.set_position(self.window.size / 2)
self.button_dict['assaultgun'] = assaultgunbutton
tankbutton = Button(sf.Texture.from_file("res/TankButton.png"))
tankbutton.origin = tankbutton.local_bounds.center
tankbutton.set_position((self.window.size.x / 2, (self.window.size.y / 3) * 2))
self.button_dict['tank'] = tankbutton