Version: 2019.2
LanguageEnglish
  • C#

QualitySettings.skinWeights

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public static SkinWeights skinWeights;

Description

Skin weights.

Maximum number of bone weights that can affect one vertex. The value can be either One Bone, Two Bones, Four Bones or Unlimited.

Meshes with more than 4 bones per vertex require Compute Shader support for GPU Skinning. This may impact performance on platforms without Compute Shader support, which have to process the vertices on the CPU.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // Set skin weights to one bone. QualitySettings.skinWeights = SkinWeights.OneBone; } }