- 3
- Posts
- 3
- Years
- He/Him
- None of your business
- Seen Oct 22, 2021
Would a Move Editor/Pokemon learnset editor be added eventually?
How do I cache this webpage for offline use? Hexed.it allows their tool to be cached for offline use and even adds an icon to your home screen on android for easy access. Will you implement the same? Also how do I edit pokemon sprites on Pokemon Emerald?
blockId > gbaService.constants().MAIN_TILESET_BLOCK_COUNT
blockId >= gbaService.constants().MAIN_TILESET_BLOCK_COUNT
int totalBlockDataLength = tileset.BlockMetaOffset - tileset.BlockOffset;
tileset.BlockCount = totalBlockDataLength / BLOCK_DATA_LENGTH;
if ((normalizedTileId == tile.tileId && !this.isSecondary)
|| (normalizedTileId != tile.tileId && this.isSecondary)) {
for (let i = 0; i < bitmapLength; i++) {
tilePixelsValues[i] = this.pixels[normalizedTileId * bitmapLength + i]
}
} else {
for (let i = 0; i < bitmapLength; i++) {
tilePixelsValues[i] = this.alternatePixels[normalizedTileId * bitmapLength + i]
}
}