Skip to content

Commit

Permalink
Updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreylanters committed Jul 20, 2022
1 parent ea7f3ec commit 3559330
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 61 deletions.
39 changes: 0 additions & 39 deletions Runtime/DelayedInvokeTween.cs

This file was deleted.

11 changes: 0 additions & 11 deletions Runtime/DelayedInvokeTween.cs.meta

This file was deleted.

11 changes: 0 additions & 11 deletions Tests/TweenTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,17 +195,6 @@ private void OnGUI () {
this.target.TweenValueVector2 (Vector2.one, 2, (v) => Debug.Log (v)).SetEaseSineInOut ().SetFrom (-Vector2.one);
if (GUILayout.Button ("Tween Value Vector3"))
this.target.TweenValueVector3 (Vector3.one, 2, (v) => Debug.Log (v)).SetEaseSineInOut ().SetFrom (-Vector3.one);
if (GUILayout.Button ("Tween Delayed Invoke"))
this.target.TweenDelayedInvoke (1, () => Debug.Log ("Hello World!"));
if (GUILayout.Button ("Pausing")) {
var _tween = this.target.TweenPositionY (3, 5).SetFrom (-3);
this.target.TweenDelayedInvoke (2, () => _tween.SetPaused (true));
this.target.TweenDelayedInvoke (3, () => _tween.SetPaused (false));
}
if (GUILayout.Button ("Change ease type halfway")) {
var _tween = this.target.TweenPositionY (0, 4).SetFrom (-1).SetEaseBackInOut ();
this.target.TweenDelayedInvoke (2, () => _tween.SetEaseBounceInOut ());
}

// Flicker Testing
GUILayout.Label ("[CANCELING TESTING]");
Expand Down

0 comments on commit 3559330

Please sign in to comment.