浏览代码

[csharp] Remove Unity 4 and fix Unity 5+ check.

pharan 8 年之前
父节点
当前提交
3bd5183721
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      spine-csharp/src/SkeletonJson.cs

+ 1 - 1
spine-csharp/src/SkeletonJson.cs

@@ -28,7 +28,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  *****************************************************************************/
 
-#if (UNITY_5 || UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_4_7 || UNITY_WSA || UNITY_WP8 || UNITY_WP8_1)
+#if (UNITY_5 || UNITY_5_3_OR_NEWER || UNITY_WSA || UNITY_WP8 || UNITY_WP8_1)
 #define IS_UNITY
 #endif