--------------------------------- AssetDatabase::PackageDescriptor::SetName Sets the name of a package generator and generates its ID
| 37 | // Sets the name of a package generator and generates its ID |
| 38 | // |
| 39 | void AssetDatabase::PackageDescriptor::SetName(std::string const& val) |
| 40 | { |
| 41 | m_Name = val; |
| 42 | m_Id = m_Name.c_str(); |
| 43 | } |
| 44 | |
| 45 | |
| 46 | //==================== |
nothing calls this directly
no outgoing calls
no test coverage detected