map-tool: download SurfaceAppearance content

This commit is contained in:
2026-03-03 07:11:26 -08:00
parent b7e1c8d723
commit 1cdd4676d7

View File

@@ -95,6 +95,12 @@ impl UniqueAssets{
accumulate_content_id(&mut self.textures,object,"SkyboxUp");
accumulate_content_id(&mut self.textures,object,"SunTextureId");
},
"SurfaceAppearance"=>{
accumulate_content(&mut self.textures,object,"ColorMapContent");
accumulate_content(&mut self.textures,object,"MetalnessMapContent");
accumulate_content(&mut self.textures,object,"NormalMapContent");
accumulate_content(&mut self.textures,object,"RoughnessMapContent");
}
"Texture"=>accumulate_content(&mut self.textures,object,"TextureContent"),
"UnionOperation"=>accumulate_content_id(&mut self.unions,object,"AssetId"),
_=>(),