ゲームに問題があります。私は1280x1280pxの地図を持っています。40x40タイルで構成されているため、1タイルは32x32ピクセルです。問題は、このマップをデバイスの実際の画面サイズに拡大縮小できないことです。それを行う方法はありますか?
これは私がtmxファイルをロードする方法です:
public Scene onLoadScene() {
// TODO Auto-generated method stub
this.mMainScene = new Scene(1);
try
{
final TMXLoader tmxLoader = new TMXLoader(this, this.mEngine.getTextureManager(),
TextureOptions.BILINEAR_PREMULTIPLYALPHA);
this.mTMXTiledMap = tmxLoader.loadFromAsset(this,"gfx/untitled.tmx");
//"gfx/0_fire_drill-lvl_01.tmx"
}
catch(final TMXLoadException tmxle)
{
Debug.e(tmxle);
}
for(TMXLayer tmxLayer : this.mTMXTiledMap.getTMXLayers())
{
this.mMainScene.getChild(0).attachChild(tmxLayer);
}
return this.mMainScene;
}
これは、マップがどのように見えるかです: http ://postimage.org/image/403w3dfnx/
アクションは赤い領域でのみ発生します。マップを編集する必要がありますか?
前もって感謝します!