Skip to content

Commit

Permalink
fix: Compile error on versions 2020.1 and below (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammin committed May 26, 2024
1 parent 6811251 commit 47dddfb
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@
using Unity.Collections;
using Unity.Jobs;
using UnityEditor;
using UnityEditor.AssetImporters;
using UnityEngine;

#if UNITY_2020_2_OR_NEWER
using UnityEditor.AssetImporters;
#else
using UnityEditor.Experimental.AssetImporters;
#endif

namespace LDtkUnity.Editor
{
//this takes the sprite rects, and based on that, generates a texture with sprites
Expand Down

0 comments on commit 47dddfb

Please sign in to comment.