MeshesUpdateMaterials Method |
Sets the specified values to material of all the child renderers in the parent's object.
Namespace:
KSPDev.ModelUtils
Assembly:
KSPDev_Utils.1.0 (in KSPDev_Utils.1.0.dll) Version: 1.0 for KSP v1.6+
Syntaxpublic static void UpdateMaterials(
GameObject parent,
string newShaderName = null,
Nullable<Color> newColor = null
)
Request Example
View SourceParameters
- parent
- Type: UnityEngineGameObject
Game object to start searching for renderers from. - newShaderName (Optional)
- Type: SystemString
New shader name. If null then it will not be changed.
- newColor (Optional)
- Type: SystemNullableColor
Color to set. If null then it will not be changed.
Remarks
Shared material is affected, so if there are unrelated meshes that use the same material then
they will be affected as well. In general, it's a bad idea to share material between several
parts. And it's a good practice to share materials within the same part.
See Also