Bug in tiled map extension of AndEngine

Source: Internet
Author: User

Exception scenarios

Cause of exception
If the map canvas is not filled with a small square, the addTileByGlobalTileID of the TMXLayer cannot obtain the GlobalID and the texture square. Therefore, a Null Pointer exception is reported.

Solution
Modify the addTileByGlobalTileID method in the org. andengine. extension. tmx. TMXLayer class.
[Java] view plaincopy
If (pGlobalTileID = 0 ){
TmxTileTextureRegion = null;
} Else {
TmxTileTextureRegion = tmxTiledMap. getTextureRegionFromGlobalTileID (pGlobalTileID );
}
Change
[Java] view plaincopy
If (pGlobalTileID = 0 ){
TmxTileTextureRegion = tmxTiledMap. getTextureRegionFromGlobalTileID (1 );
} Else {
TmxTileTextureRegion = tmxTiledMap. getTextureRegionFromGlobalTileID (pGlobalTileID );
}
[Java] view plaincopy
This. drawWithoutChecks (tmxTileTextureRegion, tmxTile. getTileX (), tmxTile. getTileY (), tileWidth, tileHeight, Color. WHITE_ABGR_PACKED_FLOAT );
Change
[Java] view plaincopy
If (pGlobalTileID! = 0 ){
This. drawWithoutChecks (tmxTileTextureRegion, tmxTile. getTileX (), tmxTile. getTileY (), tileWidth, tileHeight, Color. WHITE_ABGR_PACKED_FLOAT );
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.