Ejemplo n.º 1
0
 /// <summary>
 /// Increases (or decreases) the current dynamic intensity level, without changing the intensity falloff slope.
 /// </summary>
 /// <remarks> The resulting intensity value will be limited to a value between 0.0f and 1.0f.</remarks>
 /// <param name="deltaIntensity">a positive or negative delta value between 0.0f and 1.0f</param>
 /// <returns>PsaiResult.OK if successful</returns>
 public PsaiResult AddToCurrentIntensity(float deltaIntensity)
 {
     return(m_logik.AddToCurrentIntensity(deltaIntensity, false));
 }