An entity using a certain modelDef as "model" and explicitly setting the "skin" spawnarg
| 765 | |
| 766 | // An entity using a certain modelDef as "model" and explicitly setting the "skin" spawnarg |
| 767 | void expectEntityWithSkinKeyHasSkinnedModel(const std::string& modelKeyValue, const std::string& expectedSkin, const std::vector<std::string>& expectedMaterials) |
| 768 | { |
| 769 | auto entity = createStaticEntityWithModel(modelKeyValue); |
| 770 | setSkinKeyAndCheckModel(entity, expectedSkin, expectedMaterials); |
| 771 | } |
| 772 | |
| 773 | void expectEntityClassWithSkinKeyHasSkinnedModel(const std::string& eclassName, const std::string& expectedSkin, const std::vector<std::string>& expectedMaterials) |
| 774 | { |
no test coverage detected