Description
The ClearParameters
method of the SkinnedModelRenderer
class is used to remove any stored parameters associated with the skinned model renderer. This can be useful when you want to reset the parameters to their default state or clear any custom settings that have been applied.
Usage
To use the ClearParameters
method, simply call it on an instance of the SkinnedModelRenderer
class. This method does not take any parameters and does not return any value.
Example
// Example of using ClearParameters
SkinnedModelRenderer skinnedModelRenderer = new SkinnedModelRenderer();
// Clear all parameters
skinnedModelRenderer.ClearParameters();