| 634 | } |
| 635 | |
| 636 | BaseMatInstance* SkyBox::_getMaterialInstance() |
| 637 | { |
| 638 | if ( !mMaterial || !mMatInstance || mMatInstance->getMaterial() != mMaterial ) |
| 639 | _initMaterial(); |
| 640 | |
| 641 | if ( !mMatInstance ) |
| 642 | return NULL; |
| 643 | |
| 644 | return mMatInstance; |
| 645 | } |
| 646 | |
| 647 | DefineEngineMethod( SkyBox, postApply, void, (), , "") |
| 648 | { |
nothing calls this directly
no test coverage detected