needle-tools/needle-console

Asset post processor runs on every asset in a giant project just to set theme to null

ecuzzillo opened this issue · 4 comments

	private class AssetProcessor : AssetPostprocessor
	{
		private void OnPreprocessAsset()
		{
			ThemeNames = null;
			Themes = null;
		}
	}

This slows down asset importing, and I can't imagine it's important to do it again for every one of the thousands of assets in the 200GB+ project.

marwie commented

Hi good point, thanks for the report

marwie commented

Removed in 2.3.15
Please let me know if that fixes the issue for you @ecuzzillo

marwie commented

@ecuzzillo any info?

Sorry! Yes, that fixed it, thank you!