1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-20 01:06:02 +08:00

no message

This commit is contained in:
Daniele Giardini 2015-03-23 18:26:39 +01:00
parent f2dd1a44d9
commit e584eca48c
4 changed files with 4 additions and 4 deletions

View File

@ -10,8 +10,8 @@ public class MixedTweens : BrainBase
{
yield return new WaitForSeconds(0.6f);
target.DOMixedMoveBy(new Vector3(3, 3, 0), 3).SetAutoKill(false);
target.DOMixedMoveBy(new Vector3(-3, 0, 0), 1.5f).SetLoops(2, LoopType.Yoyo).SetAutoKill(false);
target.DOBlendableMoveBy(new Vector3(3, 3, 0), 3).SetAutoKill(false);
target.DOBlendableMoveBy(new Vector3(-3, 0, 0), 1.5f).SetLoops(2, LoopType.Yoyo).SetAutoKill(false);
}
void OnGUI()

View File

@ -10,7 +10,7 @@ public class CombineTweens : MonoBehaviour
{
yield return new WaitForSeconds(0.6f);
target.DOMixedMoveBy(new Vector3(3, 3, 0), 3);
target.DOMixedMoveBy(new Vector3(-3, 0, 0), 1.5f).SetLoops(2, LoopType.Yoyo);
target.DOBlendableMoveBy(new Vector3(3, 3, 0), 3);
target.DOBlendableMoveBy(new Vector3(-3, 0, 0), 1.5f).SetLoops(2, LoopType.Yoyo);
}
}