Skip to content

Commit

Permalink
fix incorrect vert.y
Browse files Browse the repository at this point in the history
  • Loading branch information
litefeel committed Feb 13, 2017
1 parent 145e5d0 commit 5fc1119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/BitmapFontImporter/Editor/FntParse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ private CharacterInfo CreateCharInfo(int id, int x, int y, int w, int h, int xo,
vert.x = xo;
#if UNITY_5_0 || UNITY_5_1 || UNITY_5_2
// unity 5.0 can not support baseline for
vert.y = 0;
vert.y = yo;
#else
vert.y = yo - lineBaseHeight;
#endif
Expand Down

0 comments on commit 5fc1119

Please sign in to comment.