public static GUIStyle Font(this GUIStyle current, string value, bool asCopy = true) { Font font = FileManager.GetAsset <Font>(value); if (font != null) { return(current.Font(font, asCopy)); } return(current); }