From d51ed2f848f29121b27f525bb30458cd52d019e7 Mon Sep 17 00:00:00 2001 From: taoria <445625470@qq.com> Date: Fri, 12 Aug 2022 22:51:36 +0800 Subject: [PATCH 1/2] fix:add meta --- README.md.meta | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 README.md.meta diff --git a/README.md.meta b/README.md.meta new file mode 100644 index 0000000..20afe95 --- /dev/null +++ b/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bdc12bee7bc1ac94faa1ed7d5e5a975c +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: From 510d835adada15decd537de0541dbebd363d240e Mon Sep 17 00:00:00 2001 From: taoria <445625470@qq.com> Date: Fri, 12 Aug 2022 22:57:46 +0800 Subject: [PATCH 2/2] refactor:test nee --- TNodeGraphViewImpl/Editor/Cache/NodeEditorExtensions.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TNodeGraphViewImpl/Editor/Cache/NodeEditorExtensions.cs b/TNodeGraphViewImpl/Editor/Cache/NodeEditorExtensions.cs index 1d8b2dd..1b7cba9 100644 --- a/TNodeGraphViewImpl/Editor/Cache/NodeEditorExtensions.cs +++ b/TNodeGraphViewImpl/Editor/Cache/NodeEditorExtensions.cs @@ -11,6 +11,7 @@ using TNodeGraphViewImpl.Editor.GraphBlackboard; using TNodeGraphViewImpl.Editor.NodeGraphView; using TNodeGraphViewImpl.Editor.NodeViews; using UnityEditor; +using UnityEngine; namespace TNodeGraphViewImpl.Editor.Cache{ /// @@ -276,6 +277,8 @@ namespace TNodeGraphViewImpl.Editor.Cache{ public class Launcher{ static Launcher(){ + //Get version of the package + Debug.Log("TNode v0.01 is launched"); NodeEditorSingleton.Instance.Initialize(); } }