Skips variable length blocks up to and including next zero length block.
()
| 682 | * Skips variable length blocks up to and including next zero length block. |
| 683 | */ |
| 684 | protected void skip() { |
| 685 | do { |
| 686 | readBlock(); |
| 687 | } while ((blockSize > 0) && !err()); |
| 688 | } |
| 689 | |
| 690 | private Animation<TextureRegion> getAnimation(PlayMode playType) { |
| 691 | int nrFrames = getFrameCount(); |
no test coverage detected