Ejemplo n.º 1
0
    public void UpdateRolloffDelegate()
    {
        switch (rolloffMode)
        {
        case AudioRolloffMode.Linear:
            volumeAdjustmentFunction = GetDistanceAdjustedVolumeLinear;
            break;

        case AudioRolloffMode.Logarithmic:
            volumeAdjustmentFunction = GetDistanceAdjustedVolumeLogarithmic;
            break;

        case AudioRolloffMode.Custom:
            volumeAdjustmentFunction = GetDistanceAdjustedVolumeCustom;
            break;
        }
    }
    public void UpdateRolloffDelegate()
    {
        switch(rolloffMode)
        {
            case AudioRolloffMode.Linear:
                volumeAdjustmentFunction = GetDistanceAdjustedVolumeLinear;
                break;

            case AudioRolloffMode.Logarithmic:
                volumeAdjustmentFunction = GetDistanceAdjustedVolumeLogarithmic;
                break;

            case AudioRolloffMode.Custom:
                volumeAdjustmentFunction = GetDistanceAdjustedVolumeCustom;
                break;
        }
    }