Esempio n. 1
0
    // -------------------------------------------------------------------------
    #endregion
    // -------------------------------------------------------------------------



    // -------------------------------------------------------------------------
    #region Internal Functions
    // -------------------------------------------------------------------------
    private float GetStandard()
    {
        if (standardType == StandardType.DATA)
        {
            return(standardData.GetCurrentValue());
        }
        else
        {
            return(standardRaw);
        }
    }
Esempio n. 2
0
 // -------------------------------------------------------------------------
 public void ActionCompareToTarget(FloatData value)
 {
     ActionCompareToTarget(value.GetCurrentValue());
 }
Esempio n. 3
0
 // -------------------------------------------------------------------------
 public void ActionSetValue(FloatData newValue)
 {
     // Get the integer value from the data and set it
     ActionSetValue(newValue.GetCurrentValue());
 }