Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Assets/AssetDatabaseTalk/Scripts/LibraryMetadataColoriser.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using UnityEditor;
using UnityEditor;
using UnityEngine;
using UnityEngine.UI;

Expand All @@ -19,7 +19,7 @@ private void LateUpdate()
Object currentObject = Selection.activeObject;

string guid;
#if UNITY_2018_2
#if UNITY_2018_2_OR_NEWER
long localID;
#else
int localID;
Expand Down
6 changes: 3 additions & 3 deletions Assets/AssetDatabaseTalk/Scripts/OpenCurrentMetatDataFile.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using UnityEditor;
using UnityEditor;
using UnityEngine;

public class OpenCurrentMetatDataFile : MonoBehaviour
Expand All @@ -8,8 +8,8 @@ public void OpenMetaDataFile()
Object currentObject = Selection.activeObject;
string currentObjectPath = AssetDatabase.GetAssetPath(currentObject);
string guid;
#if UNITY_2018_2

#if UNITY_2018_2_OR_NEWER
long localID;
#else
int localID;
Expand Down
4 changes: 2 additions & 2 deletions Assets/AssetDatabaseTalk/Scripts/TextToCurrentAssetInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.IO;
using System.IO;
using UnityEditor;
using UnityEngine;
using UnityEngine.UI;
Expand Down Expand Up @@ -94,7 +94,7 @@ private static string CreateStringFromTemplate(string template, Object currentOb
string result = template;

string guid;
#if UNITY_2018_2
#if UNITY_2018_2_OR_NEWER
long localID;
#else
int localID;
Expand Down
25 changes: 24 additions & 1 deletion Packages/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
{
"dependencies": {}
"dependencies": {
"com.unity.2d.sprite": "1.0.0",
"com.unity.2d.tilemap": "1.0.0",
"com.unity.collab-proxy": "1.2.16",
"com.unity.ide.rider": "1.1.4",
"com.unity.ide.vscode": "1.1.3",
"com.unity.multiplayer-hlapi": "1.0.4",
"com.unity.test-framework": "1.1.9",
"com.unity.timeline": "1.2.9",
"com.unity.ugui": "1.0.0",
"com.unity.xr.legacyinputhelpers": "1.3.8",
"com.unity.modules.androidjni": "1.0.0",
"com.unity.modules.animation": "1.0.0",
"com.unity.modules.audio": "1.0.0",
"com.unity.modules.director": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0",
"com.unity.modules.particlesystem": "1.0.0",
"com.unity.modules.physics2d": "1.0.0",
"com.unity.modules.ui": "1.0.0",
"com.unity.modules.unitywebrequest": "1.0.0",
"com.unity.modules.video": "1.0.0",
"com.unity.modules.vr": "1.0.0",
"com.unity.modules.xr": "1.0.0"
}
}