本文整理汇总了Python中gameobject.GameObject.pos_y方法的典型用法代码示例。如果您正苦于以下问题:Python GameObject.pos_y方法的具体用法?Python GameObject.pos_y怎么用?Python GameObject.pos_y使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gameobject.GameObject
的用法示例。
在下文中一共展示了GameObject.pos_y方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_IsCollidingWith_6
# 需要导入模块: from gameobject import GameObject [as 别名]
# 或者: from gameobject.GameObject import pos_y [as 别名]
def test_IsCollidingWith_6(self):
a = GameObject()
b = GameObject()
a.pos_x = 0
a.pos_y = 0
a.half_width = 1
a.half_height = 1
b.pos_x = 1
b.pos_y = 1
b.half_width = 1
b.half_height = 1
self.assertTrue(a.IsCollidingWith(b) == 1)
self.assertTrue(b.IsCollidingWith(a) == 1)
pass