/// <summary> /// Sets the tween to use the given wave function. /// </summary> public Tween Wave(Wave.Function inMode, float inFrequency) { m_WaveFunc = new Wave(inMode, inFrequency); return(this); }
/// <summary> /// Sets the tween to use the given wave function. /// </summary> public Tween Wave(Wave inWave) { m_WaveFunc = inWave; return(this); }