(string path)
| 1254 | } |
| 1255 | |
| 1256 | internal static string ToPathAbsolute(string path) |
| 1257 | { |
| 1258 | if (path != null) |
| 1259 | { |
| 1260 | // Convert into global path to if relative to the project |
| 1261 | path = StringUtils.IsRelative(path) ? Path.Combine(Globals.ProjectFolder, path) : path; |
| 1262 | } |
| 1263 | return path; |
| 1264 | } |
| 1265 | |
| 1266 | internal static bool OnAssetProperties(CustomEditors.LayoutElementsContainer layout, Asset asset) |
| 1267 | { |
no test coverage detected