Class BodyGroup
Namespace: ValveResourceFormat.ResourceTypes.ModelData
Assembly: ValveResourceFormat.dll
A body group: a set of mesh groups the model switches between, recovered from the mesh group names that share a prefix.
csharp
public sealed record BodyGroup : IEquatable<BodyGroup>Inheritance
Implements
Constructors
BodyGroup(string, IReadOnlyList<BodyGroupChoice>)
A body group: a set of mesh groups the model switches between, recovered from the mesh group names that share a prefix.
csharp
public BodyGroup(string Name, IReadOnlyList<BodyGroupChoice> Choices)Parameters
Name string
The body group name, the part before the separator.
Choices IReadOnlyList<BodyGroupChoice>
Its choices, in the order their mesh groups are declared.
Properties
Choices
Its choices, in the order their mesh groups are declared.
csharp
public IReadOnlyList<BodyGroupChoice> Choices { get; init; }Property Value
IReadOnlyList<BodyGroupChoice>
Name
The body group name, the part before the separator.
csharp
public string Name { get; init; }
