| 751 | } |
| 752 | |
| 753 | void J2DWindowEx::setAnimation(J2DAnmColor* animation) |
| 754 | { |
| 755 | for (u8 i = 0; i < 4; i++) { |
| 756 | if (isNeedSetAnm(i)) { |
| 757 | mFrameMaterials[i]->setAnimation(animation); |
| 758 | } |
| 759 | } |
| 760 | if (mContentsMaterial != nullptr) { |
| 761 | mContentsMaterial->setAnimation(animation); |
| 762 | } |
| 763 | } |
| 764 | |
| 765 | void J2DWindowEx::setAnimation(J2DAnmTextureSRTKey* animation) |
| 766 | { |
nothing calls this directly
no test coverage detected