scoredeltahandling - eisclimber/ExPresS-XR GitHub Wiki
Enum in ScoreManager
Inherits from System.Enum
Describes how a score delta is handled. If the processed value is added/subtracted depends on the function called (increase vs decrease).
public enum ScoreDeltaHandling
{
Raw,
Absolute,
Count,
Ignore
}| Name | Description |
|---|---|
| Absolute | Use absolute value, will always be positive. |
| Count | Use 1, disregarding the delta. |
| Ignore | Use 0. |
| Raw | Use raw value, allowing negative deltas. |