예제 #1
0
 /// <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);
 }
예제 #2
0
 /// <summary>
 /// Sets the tween to use the given wave function.
 /// </summary>
 public Tween Wave(Wave inWave)
 {
     m_WaveFunc = inWave;
     return(this);
 }