An error code I can't explain?

I'm trying to do some programming in Unity, but I haven't done anything in the error project except place a "Plane" object and download some assets, but suddenly the following error message appeared in the console:

"The character with Unicode value \uFE0F was not found in the [Inter-Regular SDF] font asset or any potential fallbacks. It was replaced by Unicode character \u25A1.

UnityEngine.GUIUtility:ProcessEvent (int,intptr,bool&)" and something similar came up before, but I don't know why.

Can anyone help me?

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
2 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
JanaL161
4 months ago

“The character with Unicode value \uFE0F was not found in the [Inter-Regular SDF] font asset or any potential fallbacks. It was replaced by Unicode character \u25A1.

Apparently, something tries Unicode character “◌️”, which is not covered by the built-in font and is therefore replaced by “□”. https://www.compart.com/en/unicode/U+FE0F | https://www.compart.com/en/unicode/U+25A1. If you were, you could remove that sign or talk to the developers of the assets.

But this is just a hint and not an error. Is this where this “UnityEngine.GUIUtility:ProcessEvent” comes from?