0
我創建一個Android遊戲和使用AndEngine。我正在使用AutoparallaxBackground移動背景。背景運動不順暢,其卡住,然後移動。如何順利移動背景。移動背景圖像不流暢使用andengine
final AutoParallaxBackground autoParallaxBackground = new AutoParallaxBackground(0, 0, 0, 5);
autoParallaxBackground.addParallaxEntity(new ParallaxEntity(-50.0f, new Sprite(0, 0, this.texRegBg1)));
autoParallaxBackground.addParallaxEntity(new ParallaxEntity(-60.0f, new Sprite(0, 0, this.texRegBg2)));
autoParallaxBackground.addParallaxEntity(new ParallaxEntity(-70.0f, new Sprite(0, 0, this.texRegBg3)));
autoParallaxBackground.addParallaxEntity(new ParallaxEntity(-80.0f, new Sprite(0, 0, this.texRegBg4)));
什麼是您所使用的紋理圖像的大小? –
圖片尺寸爲720x480 ..紋理尺寸爲1024x1024 – Andy
嗯......我認爲較大的尺寸可能是問題所在。用較小的圖像進行測試,看它是否能改善平滑度。 –