This version of Unity is unsupported.

QualitySettings.blendWeights

Switch to Manual
public static BlendWeights blendWeights;

Description

Blend weights.

The Blend weights can be set to either One Bone, Two Bones or Four Bones.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // Set Blend weights to one bone. QualitySettings.blendWeights = BlendWeights.OneBone; } }

See Also: Quality Settings.