Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Thompson committed May 10, 2016
1 parent d75b393 commit 2c58399
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 83 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/[Tt]emp/
/[Oo]bj/
/[Uu]nity[Gg]enerated/
/[Pp]roject[Ss]ettings/

# ===================================== #
# Visual Studio / MonoDevelop generated #
Expand Down
9 changes: 9 additions & 0 deletions Assets.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Assets/Scripts/BezierSpline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public enum HandleType {CUBE, SPHERE}
[SerializeField]
private bool _closed = false;
private bool _wasClosed = false;
public bool closed {get {return _closed;}}
#endregion

#region Cached curve data
Expand Down
4 changes: 0 additions & 4 deletions Assets/Scripts/BezierSpline_Editor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,6 @@ private void DrawPath(BezierNode[] nodes){
t += 1f/_previewSegments;
nextPos = Curve(t, prev.transform.position, prev.h2, next.h1, next.transform.position);

/*Color col = Color.green.ToHSV();
col.r = Mathf.Clamp(col.r + 180 * ((1/diff)-1), 0, 360);
col = col.ToRGB();
Gizmos.color = col;*/
Gizmos.color = Color.magenta;
Gizmos.DrawLine(lastPos, nextPos);

Expand Down
67 changes: 0 additions & 67 deletions Assets/Scripts/Ext_Color_HSV.cs

This file was deleted.

12 changes: 0 additions & 12 deletions Assets/Scripts/Ext_Color_HSV.cs.meta

This file was deleted.

9 changes: 9 additions & 0 deletions ProjectSettings.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2c58399

Please sign in to comment.