| 432 | } |
| 433 | |
| 434 | void J2DScreen::setAnimation(J2DAnmColor* animation) |
| 435 | { |
| 436 | animation->searchUpdateMaterialID(this); |
| 437 | u16 count = animation->getUpdateMaterialNum(); |
| 438 | for (u16 i = 0; i < count; i++) { |
| 439 | if (animation->getUpdateMaterialID(i) < mMaterialCount) { |
| 440 | mMaterials[animation->getUpdateMaterialID(i)].setAnimation(animation); |
| 441 | } |
| 442 | } |
| 443 | } |
| 444 | |
| 445 | void J2DScreen::setAnimation(J2DAnmTextureSRTKey* animation) |
| 446 | { |
nothing calls this directly
no test coverage detected