Cocos2d / Python中的奇怪虚线

时间:2018-09-25 17:59:22

标签: python python-3.x line cocos2d-x-2.x

我正在尝试使用Cocos2d和Python创建一条直线。 为什么在这段代码中,我会得到一条随机的虚线?

import cocos
from cocos.director import director
from cocos import draw


class TestLayer(cocos.layer.Layer):
    def __init__(self):
        super().__init__()
        line = draw.Line((0, 0), (550, 450), (255, 255, 255, 255))
        self.add(line)


def main():
    director.init()
    test_layer = TestLayer()
    main_scene = cocos.scene.Scene(test_layer)
    director.run(main_scene)


if __name__ == '__main__':
    main()

enter image description here

这里是放大的部分:

enter image description here

0 个答案:

没有答案