From e4baef5622f0ad11a2134c7f8eb31a4459847a20 Mon Sep 17 00:00:00 2001 From: pharan Date: Thu, 20 Jul 2017 14:21:38 +0800 Subject: [PATCH] [unity] Allow 3.5 jsons. --- .../Assets/spine-unity/Editor/SpineEditorUtilities.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spine-unity/Assets/spine-unity/Editor/SpineEditorUtilities.cs b/spine-unity/Assets/spine-unity/Editor/SpineEditorUtilities.cs index 52a414894..fd7a31fc3 100644 --- a/spine-unity/Assets/spine-unity/Editor/SpineEditorUtilities.cs +++ b/spine-unity/Assets/spine-unity/Editor/SpineEditorUtilities.cs @@ -1213,7 +1213,7 @@ namespace Spine.Unity.Editor { #endregion #region Checking Methods - static int[][] compatibleVersions = { new[] {3, 6, 0} }; + static int[][] compatibleVersions = { new[] {3, 6, 0}, new[] {3, 5, 0} }; //static bool isFixVersionRequired = false; static bool CheckForValidSkeletonData (string skeletonJSONPath) { @@ -1272,10 +1272,10 @@ namespace Spine.Unity.Editor { // Version warning if (isSpineData) { - string runtimeVersion = compatibleVersions[0][0] + "." + compatibleVersions[0][1]; + string runtimeVersionDebugString = compatibleVersions[0][0] + "." + compatibleVersions[0][1]; if (string.IsNullOrEmpty(rawVersion)) { - Debug.LogWarningFormat("Skeleton '{0}' has no version information. It may be incompatible with your runtime version: spine-unity v{1}", asset.name, runtimeVersion); + Debug.LogWarningFormat("Skeleton '{0}' has no version information. It may be incompatible with your runtime version: spine-unity v{1}", asset.name, runtimeVersionDebugString); } else { string[] versionSplit = rawVersion.Split('.'); bool match = false; @@ -1292,7 +1292,7 @@ namespace Spine.Unity.Editor { } if (!match) - Debug.LogWarningFormat("Skeleton '{0}' (exported with Spine {1}) may be incompatible with your runtime version: spine-unity v{2}", asset.name, rawVersion, runtimeVersion); + Debug.LogWarningFormat("Skeleton '{0}' (exported with Spine {1}) may be incompatible with your runtime version: spine-unity v{2}", asset.name, rawVersion, runtimeVersionDebugString); } }