Search Issue Tracker
Won't Fix
Votes
1
Found in
5.4.0p1
Issue ID
824969
Regression
Yes
Custom font turns black after building process finishes
Steps to reproduce:
1. Open attached project
2. Build or Build and run
3. Enter play mode right after building finishes
Actual: all customs fonts turn black
Expected: they should be white
Reproduced: 5.4.0p2, 5.5.0a6 (can be worked around by saving scene)
Not reproducible: 5.3.6p2 (it turns black, but updates itself right before entering play mode)
Comments (1)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Memory usage rises when switching scenes with GRD enabled and a loaded texture in URP
- [Quality Hackweek] Terrain Brush Size value is not serialized after deselecting the terrain when using the first instance of multiple Inspectors
- "NullReferenceException" is thrown when setting a long string in TMP with "Atlas Population Mode" set to "Dynamic" and "Multi Atlas Textures" enabled
- TextMeshPro text is misaligned when alignment is set via script
- A DX11 shader error is thrown when compiling shaders for platforms without DX11 support
hht
Aug 24, 2016 11:26
Reproduce:
In EditorWindow script, in void OnGUI:
------------------------------------------
if (GUILayout.Button ("Find")) {
for (int i = 0; i < Selection.objects.Length; i++) {
string tmpa = AssetDatabase.GetAssetPath (Selection.objects [i]);
if (tmpa != null && tmpa.Length > 0) {
string[] aaa = AssetDatabase.FindAssets ("ref:" + Selection.objects [i].GetInstanceID () + ":" + tmpa);
for (int j = 0; j < aaa.Length; j++) {
prefList.Add(AssetDatabase.GUIDToAssetPath(aaa[j]));
}
}
}
prefList.Sort ();
Finded = true;
Repaint ();
}
-----------------------------------
Where prefList is List<string>
Can be worked around by reimport font (RMB on font asset in Project -> reimport)