AndEngine绘制屏幕顶部和底部的线条

时间:2014-02-14 11:52:38

标签: android andengine

我正在使用AndEngine,我想在顶部绘制一条线作为我的屏幕的顶部..而一个在底部作为地面。

如何获得坐标?

                final Line line = new Line(StartX, StartY, lastX,
                        lastY, this.getVertexBufferObjectManager());

enter image description here

展示我的意思的图片。黑线是我想要的,红点是我绘制黑线所需的协调。

1 个答案:

答案 0 :(得分:2)

我找到了,屋顶是

                line1 = new Line(0, 0, width,
                        0, getVertexBufferObjectManager());

和地面

                line1 = new Line(0, width, height,
                        width, getVertexBufferObjectManager());

使用你的屏幕比率。