I have imported atlas, json and png files from spine to Unity. Now I am getting the following errors:
Assets/spine-unity/Assets/spine-unity/Editor/SkeletonAnimationInspector.cs(64,57): error CS0122: `UnityEditor.EditorGUILayout.DelayedTextField(string, string, UnityEngine.GUIStyle, params UnityEngine.GUILayoutOption[])' is inaccessible due to its protection level
Assets/spine-unity/Assets/spine-unity/Editor/SkeletonAnimationInspector.cs(64,57): error CS1502: The best overloaded method match for `UnityEditor.EditorGUILayout.DelayedTextField(string, string, UnityEngine.GUIStyle, params UnityEngine.GUILayoutOption[])' has some invalid arguments
Assets/spine-unity/Assets/spine-unity/Editor/SkeletonAnimationInspector.cs(64,57): error CS1503: Argument #1' cannot convert
UnityEditor.SerializedProperty' expression to type `string'
I have tried changing "DelayedTextField" to "TextField" but it is of now use as the arguments are not matching. And I do not know what to write in the as params.
If you can please help me with this issue.