Skip to content

Instantly share code, notes, and snippets.

@r618
Created February 15, 2020 13:41
Show Gist options
  • Save r618/12ac52bbb5ecdb70ffee4bfe93683b89 to your computer and use it in GitHub Desktop.
Save r618/12ac52bbb5ecdb70ffee4bfe93683b89 to your computer and use it in GitHub Desktop.
using UnityEditor;
public class ReserializeAllMenuItem
{
[MenuItem("Development/Reserialize all items")]
static void ReserializeAll()
{
AssetDatabase.ForceReserializeAssets();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment