我一直在寻找一段时间,似乎无法找到如何将场景的背景设置为渐变......很难找到与Andengine相关的可靠答案,
我想我的选择是:
感谢任何帮助。
答案 0 :(得分:1)
活动类(onCreateScene或onPopulateScene)中的以下代码应将红/蓝渐变设置为背景。
Gradient g = new Gradient(0, 0, CAMERA_WIDTH, CAMERA_HEIGHT, this.getVertexBufferObjectManager());
g.setGradient(Color.RED, Color.BLUE, 1, 0);
this.setBackground(new EntityBackground(g));