scoredeltahandling - eisclimber/ExPresS-XR GitHub Wiki

ScoreDeltaHandling

Enum in ScoreManager

Inherits from System.Enum

Summary

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
}

Members

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.
⚠️ **GitHub.com Fallback** ⚠️