Warrning: Unable to find style 'ToolbarSeachTextField' in skin 'DarkSkin' Used UnityEngine.GUIUtility:ProcessEvent (int,intptr,bool&)
Asked Answered
Q

4

0

Hello,
Whenever I open Input Action, the search bar and listening button won’t show up fully, and I received the warning message below:

Unable to find style ‘ToolbarSeachTextField’ in skin ‘DarkSkin’. Used
UnityEngine.GUIUtility:ProcessEvent (int, intptr, bool&).

Even if I switch the editor theme to light, the same message appears:

Unable to find style ‘ToolbarSeachTextField’ in skin ‘LightSkin’. Used
UnityEngine.GUIUtility:ProcessEvent (int, intptr, bool&).

I am using Unity 2022.3.4f1 and Input System package 1.6.1

Quathlamba answered 22/4 at 18:42 Comment(0)
R
0

Same problem here, I am using 2022.3.5f1*. Did you find a work around?

Readable answered 28/7, 2023 at 9:14 Comment(0)
M
1

unity for some reason renamed all styles contaning “Seach” in name to “Search”, so versions above 2021.3.14, i think, won’t work with editor scripts that uses this style

Minimal answered 10/3 at 0:59 Comment(0)
B
0

I just added the “r” again and it works for now, no other conflicts or problems found.

#if UNITY_2023_2_OR_NEWER || UNITY_2021_3_28 || UNITY_2022_3_1
            public static readonly GUIStyle toolbarSearchField = "ToolbarSearchTextField";
#else
            public static readonly GUIStyle toolbarSearchField = "ToolbarSearchTextField";
#endif
Bolling answered 8/4 at 17:7 Comment(0)
F
0

This issue is fixed with case ISXB-536, and implemented input system 1.6.3.

Fuse answered 28/3 at 0:10 Comment(2)

I'm using unity 2022.3.19f1, input system 1.7.0, but unfortunately this is still happening. I tried editing the code to add the 'r' like mentioned by Warnex, but Unity warns of the file being manually changed and changes it back. I have a Personal license

Diplocardiac

This is not fixed, it is still very much a problem

Washery

© 2022 - 2024 — McMap. All rights reserved.