Savable Scaling Source
📊 SavableScalingSource Struct
A savable version of ScalingSource
.
Namespace:
Esper.Inventool.DataManagement
Access:public
Type:struct
Attributes:[Serializable]
📦 Fields
public
scalingType
ScalingSource.ScalingType
How scaling is applied.
public
initialValue
NumericValue
The starting value.
public
increment
NumericValue
The scaling amount used for linear scaling.
public
min
NumericValue
The minimum value used for curved scaling.
public
max
NumericValue
The maximum value used for curved scaling.
public
curve
SavableCurve
The scaling curve used when the scaling type is set to Curve. Interpolates from min to max based on level.
🔧 Constructors
public
SavableScalingSource(ScalingSource scalingSource)
Creates a savable scaling source from a ScalingSource
.
🧰 Methods
public
ToScalingSource()
ScalingSource
Converts this SavableScalingSource
back into a ScalingSource
.
Last updated