File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . Generic ;
3- using System . Text ;
43using UnityEditor ;
54using UnityEngine ;
65using UnityEngine . Assertions ;
@@ -95,7 +94,6 @@ private void FindObjectByPathOrGuid()
9594 if ( result . Count > 1 )
9695 {
9796 ShowNotification ( new GUIContent ( "Found multiple matching Scene objects.\n Please check the Console log." ) ) ;
98- StringBuilder pathBuilder = new StringBuilder ( ) ;
9997 foreach ( Transform target in result )
10098 {
10199 UDebug . Log ( $ "<b>[Asset Quick Access]</b> Found '{ _assetIdentifier } ' in scene '{ target . gameObject . scene . name } '.", target ) ;
@@ -106,7 +104,7 @@ private void FindObjectByPathOrGuid()
106104 }
107105
108106 // Not found
109- ShowNotification ( new GUIContent ( $ "Can not find asset with guid or path ' { _assetIdentifier } '. ") ) ;
107+ ShowNotification ( new GUIContent ( $ "Can not find asset with guid or path: \n { _assetIdentifier } ") ) ;
110108 }
111109
112110 private void ClearBottomTipsGuiCaches ( )
You can’t perform that action at this time.
0 commit comments