示例#1
0
        public static void TweenBaitJump(GameObject go, Vector3 end, float power, int num, float time, TweenCallback cb)
        {
            Sequence tw = go.transform.DOLocalJump(end, power, 1, time);

            tw.OnComplete(cb);
        }