| 129 | #if USE_EDITOR |
| 130 | |
| 131 | void MaterialInstance::GetReferences(Array<Guid>& assets, Array<String>& files) const |
| 132 | { |
| 133 | MaterialBase::GetReferences(assets, files); |
| 134 | if (_baseMaterial) |
| 135 | assets.Add(_baseMaterial->GetID()); |
| 136 | } |
| 137 | |
| 138 | #endif |
| 139 |
nothing calls this directly
no test coverage detected