Thanks for the link. I’m interested in the HdMaterialOverrideSchema because it allows to specify the public UI parameter values in a way that is loosely coupled to the shader parameters in the node graph.
Let’s say that I want to tweak a parameter value from a DCC application. If I author the parameter directly in the shader network, or even as an override, that would most likely trigger a shader recompilation, because the parameter values are inside the shader graph contained in the HdMaterialSchema locators.
But if I author the parameters in the public UI managed by the HdMaterialOverrideSchema, then no shader recompilation would be triggered, and I could just update the parameter values in the already compiled shaders.
According to the documentation in the files
/pxr/imaging/hd/materialSchema.h
/pxr/imaging/hd/materialOverriedSchema.h
You could author a public UI attribute as (please correct me here, I’m still new to OpenUSD)
def Material "RedMaterial" {
custom color3f materialOverride:interfaceValues:diffuseColor:value = (1, 0, 0)
# rest omitted
}
The problem is that if I try to author the public UI attributes in like the above, they are not available in the primSource of the scene index:
Prim* CreateMaterialPrim(SdfPath primPath, Observer* observer) {
HdContainerDataSourceHandle primSource = observer->GetSceneIndex()>GetPrim(path).dataSource;
HdMaterialOverrideSchema materialOverrideSchema = HdMaterialOverrideSchema::GetFromParent(primSource);
if(materialOverrideSchema.IsDefined()) {
std::cout << "OK" << std::endl;
} else {
std::cout << "Something's wrong" << std::endl;
}
}
It looks like the problem stems from the fact that the UsdImagingDataSourceMaterialPrim (file dataSourceMaterial.cpp) in usdImaging scene index is skipping the data for the materialOverrideSchema, making it unavailable to downstream scene indices.
The question is, if the materialOverrideSchema is missing from the implementation, what is the common way to specify material parameters without triggering shader recompilation?
PS. I added an issue on Github: UsdImagingDataSourceMaterialPrim is missing the the MaterialOverrideSchema · Issue #3550 · PixarAnimationStudios/OpenUSD · GitHub