| 925 | #if USE_EDITOR |
| 926 | |
| 927 | void ModelBase::GetReferences(Array<Guid>& assets, Array<String>& files) const |
| 928 | { |
| 929 | BinaryAsset::GetReferences(assets, files); |
| 930 | |
| 931 | for (auto& slot : MaterialSlots) |
| 932 | assets.Add(slot.Material.GetID()); |
| 933 | } |
| 934 | |
| 935 | bool ModelBase::Save(const StringView& path) |
| 936 | { |
nothing calls this directly
no test coverage detected