Skip to content

Commit

Permalink
fix: Compile error on versions 2020.1 and below
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammin committed May 26, 2024
1 parent b3f415d commit 98a585c
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
using UnityEngine;
using UnityEngine.Tilemaps;

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

namespace LDtkUnity.Editor
{
/// <summary>
Expand Down

0 comments on commit 98a585c

Please sign in to comment.