Skip to content

Custom Firebase.Editor.dll without freeze when pressing play

Notifications You must be signed in to change notification settings

bhallionOhbibi/FirebaseEditorDll

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

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);
}

About

Custom Firebase.Editor.dll without freeze when pressing play

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published