Class DmeVertexData
- Assembly
- ValveResourceFormat.dll
Represents vertex data with multiple streams.
[CamelCaseProperties]
public class DmeVertexData : Element, IDictionary<string, object?>, ICollection<KeyValuePair<string, object?>>, IEnumerable<KeyValuePair<string, object?>>, IDictionary, ICollection, IEnumerable, IEquatable<Element>
Inheritance
-
AttributeListElement
Implements
Inherited Members
-
Element.GetPropertyDerivedAttributeList()Element.Get<T>(string)Element.GetArray<T>(string)Element.Contains(string)Element.ToString()Element.ContainsKey(string)Element.Equals(Element?)Element.IDElement.NameElement.ClassNameElement.StubElement.OwnerElement.this[string]AttributeList.Attribute_ChangeLockAttributeList.Add(string, object?)AttributeList.GetPropertyDerivedAttributeList()AttributeList.GetOverrideType(string)AttributeList.SetOverrideType(string, AttributeList.OverrideType?)AttributeList.Remove(string)AttributeList.TryGetValue(string, out object?)AttributeList.ContainsKey(string)AttributeList.RemoveAt(int)AttributeList.IndexOf(string)AttributeList.Clear()AttributeList.GetAllAttributesForSerialization()AttributeList.GetEnumerator()AttributeList.OnPropertyChanged(string)AttributeList.OnCollectionChanged(NotifyCollectionChangedEventArgs)AttributeList.OwnerAttributeList.KeysAttributeList.ValuesAttributeList.this[string]AttributeList.this[int]AttributeList.CountAttributeList.IsFixedSizeAttributeList.IsReadOnlyAttributeList.IsSynchronizedAttributeList.SyncRootAttributeList.PropertyChangedAttributeList.CollectionChanged
Properties
FlipVCoordinates
Gets or sets a value indicating whether to flip V texture coordinates.
public bool FlipVCoordinates { get; set; }
Property Value
JointCount
Gets or sets the number of joints for skinning.
public int JointCount { get; set; }
Property Value
VertexFormat
Gets the vertex format specification.
public StringArray VertexFormat { get; }
Property Value
- StringArray
Methods
AddIndexedStream<T>(string, T[], int[])
Adds an indexed vertex data stream.
public void AddIndexedStream<T>(string name, T[] data, int[] indices)
Parameters
Type Parameters
T
AddStream<T>(string, T[])
Adds a vertex data stream.
public void AddStream<T>(string name, T[] data)
Parameters
name
stringdata
T[]
Type Parameters
T