Class EnumLayerProperty<T>
Represents a property on a layer. Properties are saved in storage and can optionally be modified from the UI.
Note: You cannot initialize layer properties yourself. If properly placed and annotated, the Artemis core will initialize these for you.
Inherited Members
Namespace: Artemis.Core
Assembly: Artemis.Core.dll
Syntax
public class EnumLayerProperty<T> : LayerProperty<T>, ILayerProperty, IStorageModel, IDisposable where T : Enum
Type Parameters
Name | Description |
---|---|
T | The type of property encapsulated in this layer property |
Methods
UpdateCurrentValue(float, float)
Called every update (if keyframes are both supported and enabled) to determine the new CurrentValue based on the provided progress
Declaration
protected override void UpdateCurrentValue(float keyframeProgress, float keyframeProgressEased)
Parameters
Type | Name | Description |
---|---|---|
float | keyframeProgress | The linear current keyframe progress |
float | keyframeProgressEased | The current keyframe progress, eased with the current easing function |
Overrides
Operators
implicit operator int(EnumLayerProperty<T>)
Implicitly converts an EnumLayerProperty<T> to an int
Declaration
public static implicit operator int(EnumLayerProperty<T> p)
Parameters
Type | Name | Description |
---|---|---|
EnumLayerProperty<T> | p |
Returns
Type | Description |
---|---|
int |
implicit operator T(EnumLayerProperty<T>)
Implicitly converts an EnumLayerProperty<T> to a T
Declaration
public static implicit operator T(EnumLayerProperty<T> p)
Parameters
Type | Name | Description |
---|---|---|
EnumLayerProperty<T> | p |
Returns
Type | Description |
---|---|
T |