Posts

Showing posts from January, 2019

Unity3d Tutorial-Vfx Fire Effect Particle System

Image
color used for effect in video Color code1:FF9A00 Color Code2:F82606 Link to download particle effect package: https://drive.google.com/open?id=1yvl2U9tpGK6DstuTn2n1Iv8RAA9eAc_m

Unity3d Dotween Plugin Tutorial series -Information

Image
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 ...