Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 458 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 458 Bytes

FirebaseEditorDll

Custom Firebase.Editor.dll without freeze when pressing play

What was done:

  • replace the following lines in GenerateXmlFromGoogleServicesJson.cctor()
RunOnMainThread.Run(delegate
{
	GenerateXmlFromGoogleServicesJson.CheckConfiguration();
}, false);

with:

if (!EditorApplication.isPlayingOrWillChangePlaymode)
{
	RunOnMainThread.Run(delegate
	{
		GenerateXmlFromGoogleServicesJson.CheckConfiguration();
	}, false);
}