Пример #1
0
 // Token: 0x06002E08 RID: 11784 RVA: 0x000E1928 File Offset: 0x000DFD28
 public float Step()
 {
     if (this.config.interpolationType == FloatInterpolator.Config.InterpolationType.Exponential)
     {
         this.currentValue = ETween.Step(this.currentValue, this.targetValue, this.config.interpolationSpeed);
     }
     else if (this.config.interpolationType == FloatInterpolator.Config.InterpolationType.DampedSpring)
     {
         this.currentValue = DTween.Step(this.currentValue, this.targetValue, ref this._velocity, this.config.interpolationSpeed);
     }
     else
     {
         this.currentValue = this.targetValue;
     }
     return(this.currentValue);
 }
Пример #2
0
 public float Step()
 {
     if (config.interpolationType == Config.InterpolationType.Exponential)
     {
         currentValue = ETween.Step(
             currentValue, targetValue, config.interpolationSpeed);
     }
     else if (config.interpolationType == Config.InterpolationType.DampedSpring)
     {
         currentValue = DTween.Step(
             currentValue, targetValue, ref _velocity, config.interpolationSpeed);
     }
     else
     {
         currentValue = targetValue;
     }
     return(currentValue);
 }