0
我想使用精靈作爲背景,但圖像不包含整個相機區域。如何將sprite設置爲背景圖片?
目前,它看起來像這樣(只覆蓋部分):
這是我在OnCreateResources
加載圖像:
backgroundTextureAtlas = new BitmapTextureAtlas(getTextureManager(),800, 480, TextureOptions.BILINEAR_PREMULTIPLYALPHA);
mBackgroundTextureRegion = BitmapTextureAtlasTextureRegionFactory.createFromAsset(backgroundTextureAtlas,this.getAssets(),"background.png",0,0);
backgroundTextureAtlas.load();
在OnCreateScene
,創造了雪碧爲:
mBackgroundSprite = new Sprite(0, 0, mBackgroundTextureRegion, getVertexBufferObjectManager());
如何縮放圖像以填滿整個區域?
謝謝:)它的工作。 –