1.DOTween Plugin - Introduction (01) In this tutorial .we are going to see what is the do tween and how to get dotween plugin 1.A tween that takes control of a value and animates it. 2.Its control of a value, takes control of other tweens and animates them as a group. 3.it reduces programming time 4.and its reduces the file size 2.DOTween Plugin -Movement (02) In this tutorial .we are going to see DoTween Move System So we are going to cover following types of moves syntax 1.DoMove 2.DoMoveX 3,DoJump 1.DoMove To move the object relative to x,y and z Syntax: DOMove(Vector3 to, float duration, bool snapping) 2.DoMoveX To move the object only on particular position Syntax: DOMoveX/DOMoveY/DOMoveZ(float to, float duration, bool snapping) 3,DoJump To make the object jump on according the spot value provided Syntax: DOJump(Vector3 endValue, float jumpPower, int numJumps, float duration, bool snapping) Examples ...
Comments
Post a Comment