I've created a MaterialShaderGraph ShaderMaterial that possesses a parameter I wish to change using gdscript.<br /><br />In the ShaderMaterial inspector dialog, mouse-hover tells me this parameter is called "shader_param/color"<br /><br />I know that for shape-keys, the relevant parameter is called "morph/keyname", so object.set("morph/keyname", 0.5) changes the value of the morph target.<br /><br />Yet when I try object.set("shader_param/color",Color(0.5,0.5,0.5)) or any variation, nothing happens.<br /><br />I assume I need to somehow get the material, or the shader. But how to do this is not apparent.<br /><br />All help supremely appreciated.