Axiom.Core.SubMesh.ClearBoneAssignments C# (CSharp) Method

ClearBoneAssignments() public method

Removes all bone assignments for this mesh.
This method is for modifying weights to the shared geometry of the Mesh. To assign weights to the per-SubMesh geometry, see the equivalent methods on SubMesh.
public ClearBoneAssignments ( ) : void
return void
		public void ClearBoneAssignments()
		{
			boneAssignmentList.Clear();
			boneAssignmentsOutOfDate = true;
		}