private static AssetLibrarySet GetAssetLibrarySet(Raw.AssetLibrarySet raw) { return(new AssetLibrarySet() { Id = raw.Id, Libraries = raw.Libraries.ToDictionary(kv => kv.Key, GetAssetLibraryDefinition), }); }
private static AssetLibrarySet CreateAssetLibrarySet(Raw.AssetLibrarySet raw) { return(new AssetLibrarySet() { Id = raw.Id, Libraries = raw.Libraries.ToDictionary(kv => kv.Key, CreateAssetLibrary), }); }