LTDescr.setRotate C# (CSharp) Method

setRotate() public method

public setRotate ( ) : LTDescr
return LTDescr
    public LTDescr setRotate()
    {
        this.type = TweenAction.ROTATE;
        this.initInternal = ()=>{ this.from = trans.eulerAngles;  this.to = new Vector3(LeanTween.closestRot( this.fromInternal.x, this.toInternal.x), LeanTween.closestRot( this.from.y, this.to.y), LeanTween.closestRot( this.from.z, this.to.z)); };
        this.easeInternal = ()=>{
            newVect = easeMethod();
            trans.eulerAngles = newVect;
        };
        return this;
    }
LTDescr