我正在使用AndEngine,我想在顶部绘制一条线作为我的屏幕的顶部..而一个在底部作为地面。
如何获得坐标?
final Line line = new Line(StartX, StartY, lastX,
lastY, this.getVertexBufferObjectManager());
展示我的意思的图片。黑线是我想要的,红点是我绘制黑线所需的协调。
答案 0 :(得分:2)
我找到了,屋顶是
line1 = new Line(0, 0, width,
0, getVertexBufferObjectManager());
和地面
line1 = new Line(0, width, height,
width, getVertexBufferObjectManager());
使用你的屏幕比率。