Page 1 of 1

Warnings in 2022 LTS

Posted: Mon Jun 12, 2023 5:54 am
by lgarczyn
I just upgraded to the new unity 2022 LTS version, and I started getting a lot of style warnings in the dialog editor:

Image

The dialog window doesn't seem to be affected

Image

Any idea why that might happen?

Re: Warnings in 2022 LTS

Posted: Mon Jun 12, 2023 6:08 am
by lgarczyn
Looks like it's due to this issue, that's since been fixed https://github.com/Deadcows/MyBox/issues/120

Re: Warnings in 2022 LTS

Posted: Mon Jun 12, 2023 7:46 am
by Tony Li
Yes, that's the issue. The Dialogue System Extras page has a patch. Up to Unity version 2022.3.0, Unity misspelled the resource ("Seach"), so that's what editor code had to use. In 2022.3.1, they changed the name of the resource ("Search"), so assets had to update their editor code. The patch uses conditional compilation to specify the correct resource name (Seach or Search) depending on the Unity version.

Re: Warnings in 2022 LTS

Posted: Mon Jun 12, 2023 10:29 am
by lgarczyn
Thanks! Solved