Class DmeLog
Namespace: ValveResourceFormat.IO.ContentFormats.DmxModel
Assembly: ValveResourceFormat.dll
Base class for animation logs, which hold their keyframe data in layers.
[CamelCaseProperties]
public abstract class DmeLog : Element, IDictionary<string, object?>, ICollection<KeyValuePair<string, object?>>, IEnumerable<KeyValuePair<string, object?>>, IDictionary, ICollection, IEnumerable, IEquatable<Element>Inheritance
object ← AttributeList ← Element ← DmeLog
Derived
DmeFloatLog, DmeQuaternionLog, DmeVector3Log
Implements
IDictionary<string, object?>, ICollection<KeyValuePair<string, object?>>, IEnumerable<KeyValuePair<string, object?>>, IDictionary, ICollection, IEnumerable, IEquatable<Element>
Inherited Members
Element.Get<T>(string), Element.GetArray<T>(string), Element.Contains(string), Element.ToString(), Element.ContainsKey(string), Element.Equals(Element?), Element.Equals(object?), Element.GetHashCode(), Element.ID, Element.Name, Element.ClassName, Element.Stub, Element.Owner, Element.this[string], AttributeList.Attribute_ChangeLock, AttributeList.Add(string, object?), AttributeList.Set<T>(string, T), 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.Schema, AttributeList.Owner, AttributeList.Keys, AttributeList.Values, AttributeList.this[string], AttributeList.this[int], AttributeList.Count, AttributeList.IsFixedSize, AttributeList.IsReadOnly, AttributeList.IsSynchronized, AttributeList.SyncRoot, AttributeList.PropertyChanged, AttributeList.CollectionChanged
Constructors
DmeLog(string)
Initializes a new instance of the class.
protected DmeLog(string valueTypeName)Parameters
valueTypeName string
Lowercase name of the logged value type, such as "vector3".
Properties
BookmarksX
Gets the X-axis bookmarks.
public TimeSpanArray BookmarksX { get; }Property Value
TimeSpanArray
BookmarksY
Gets the Y-axis bookmarks.
public TimeSpanArray BookmarksY { get; }Property Value
TimeSpanArray
BookmarksZ
Gets the Z-axis bookmarks.
public TimeSpanArray BookmarksZ { get; }Property Value
TimeSpanArray
CurveInfo
Gets or sets the curve interpolation information.
[DMProperty("curveinfo", false)]
public Element? CurveInfo { get; init; }Property Value
Element?
Layers
Gets or sets the log layers containing keyframe data.
[DMProperty("layers", false)]
public ElementArray Layers { get; init; }Property Value
ElementArray
UseDefaultValue
Gets or sets a value indicating whether to use the default value.
[DMProperty("usedefaultvalue", false)]
public bool UseDefaultValue { get; set; }
