iTween.ApplyFloatTargets C# (CSharp) Method

ApplyFloatTargets() private method

private ApplyFloatTargets ( ) : void
return void
    void ApplyFloatTargets()
    {
        //calculate:
        floats[2] = ease(floats[0],floats[1],percentage);

        //apply:
        tweenArguments["onupdateparams"]=floats[2];

        //dial in:
        if(percentage==1){
            tweenArguments["onupdateparams"]=floats[1];
        }
    }
iTween