Skip to content

Commit

Permalink
UI fix (Windows)
Browse files Browse the repository at this point in the history
  • Loading branch information
keijiro committed Mar 14, 2016
1 parent 5ffa49a commit e7c54d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Kino/Bloom/Editor/BloomGraphDrawer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ Vector3 PointInRect(float x, float y)
{
x = Mathf.Lerp(_rectGraph.x, _rectGraph.xMax, x / _rangeX);
y = Mathf.Lerp(_rectGraph.yMax, _rectGraph.y, y / _rangeY);
return new Vector3(x, y, 1);
return new Vector3(x, y, 0);
}

// Draw a line in the graph rect.
Expand Down

0 comments on commit e7c54d9

Please sign in to comment.