Skip to content

Commit

Permalink
Unity 2020.2 namespace update
Browse files Browse the repository at this point in the history
  • Loading branch information
keijiro committed Feb 19, 2021
1 parent 171f512 commit 1b84ef8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ Desktop.ini
/Library
/Logs
/Temp
/UserSettings
4 changes: 4 additions & 0 deletions Packages/jp.keijiro.metamesh/Editor/MetameshImporter.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
using UnityEngine;
using UnityEditor;
#if UNITY_2020_2_OR_NEWER
using UnityEditor.AssetImporters;
#else
using UnityEditor.Experimental.AssetImporters;
#endif

namespace Metamesh
{
Expand Down
4 changes: 4 additions & 0 deletions Packages/jp.keijiro.metamesh/Editor/MetameshImporterEditor.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
using UnityEngine;
using UnityEditor;
#if UNITY_2020_2_OR_NEWER
using UnityEditor.AssetImporters;
#else
using UnityEditor.Experimental.AssetImporters;
#endif

namespace Metamesh
{
Expand Down

0 comments on commit 1b84ef8

Please sign in to comment.