Placeholder-Software / Dissonance

Unity Voice Chat Asset
70 stars 5 forks source link

Persistent Welcome Popup #129

Closed AdamKane closed 5 years ago

AdamKane commented 5 years ago

Hello,

On my main PC, the welcome dialog popped up once, I used it and then it stayed quiet.

But on my secodary PC, sync'd via Unity Collaborate, the pop-up keeps, well popping up: https://i.imgur.com/I391qn5.png

Any ideas?

Thanks. dissonance-popup

martindevans commented 5 years ago

When the welcome window pops up it should write a file to Assets/Plugins/Dissonance/Resources/.WelcomeState.json, this file contains the version of Dissonance the window was last shown for and that is used to ensure that it only automatically pops up once per Dissonance version.

Is this file not getting created when the window pops up? If not, try making the file and putting this into it:

{"_shownForVersion":"6.2.5"}

Does that stop the window popping up? If not, try going to Assets/Plugins/Dissonance/Editor/Windows/Welcome/WelcomeLauncher.cs and commenting out the line:

WelcomeWindow.ShowWindow(state);
AdamKane commented 5 years ago

welcome

Thanks. It looks like everything is as it should be in my project (see pic).

I went ahead and commented out the ShowWindow() call.