LTDescr.setMoveY C# (CSharp) Method

setMoveY() public method

public setMoveY ( ) : LTDescr
return LTDescr
    public LTDescr setMoveY()
    {
        this.type = TweenAction.MOVE_Y;
        this.initInternal = ()=>{ this.fromInternal.x = trans.position.y; };
        this.easeInternal = ()=>{ trans.position=new Vector3( trans.position.x,easeMethod().x,trans.position.z); };
        return this;
    }
LTDescr