UGUI-Material-Design-Icon
UGUI-Material-Design-Icon copied to clipboard
Doesn't render in Unity 2019.2.11f1
After updating a project from Unity 2018.4.2f1 to 2019.2.11f1, all icons became invisible.
OS: Windows 10 x64
I've tried other vector icon plugins, but this one makes icons look the best. So, if possible, I'd like to find out what's causing these icons to not render. Also, thanks for all the use I got out of the plugin up to this point!
Hi Ohira, Thanks for the information!
I will leave this open for now and look into it when I am free :)
I got it working by changing line 63 from
int vertCount = verts.Count - 4;
to
int vertCount = verts.Count;
as I believe there's no newline in the text (as debugging confirms)
Confirmed that removing the "- 4" from the line does, indeed, fix it 👍