Muscle Animation Editor CS0618

I just downloaded Muscle Animation Editor and then he told me : warning CS0618: ´UnityEditor .EditorWindow.title´ is obsolete: ´Use titleContent instead (it supports setting a title icon as well) i don’t know what to do can someone help me

Mod Edit: Please do not post contents of a purchased asset, it is a violation of the TOS.

why not ask the author?

Warning itself is self explanatory: EditorWindow.title has been replaced by EditorWindow.titleContent.

If you double click the warning, it should take you to that line of code.

When i double click the warning it shows me: this.title= “Muscle Editor” ;

change that line to

this.titleContent = new GUIContent("Muscle Editor");
1 Like

Well Thanks i don’t get the warning anymore but now i get: warning CS0162 unreachable code detected when i double click the warning it says : Debug.Log (log);
and this is now in PSLogger.cs

That means Debug.Log(log) will never be executed. So just delete that line of code or add // at the beginning.

2 Likes

Thanks you’re a hero.
now all is fine