Advertisement
benimaru

QuickFIndUtil

Jan 30th, 2015
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. using UnityEngine;
  2. using UnityEditor;
  3. using System.Collections;
  4.  
  5. public class QuickFindUtil : MonoBehaviour
  6. {
  7.     [MenuItem ("Assets/Quick Find &%.")]
  8.     static void QuickFind ()
  9.     {
  10.         EditorUtility.FocusProjectWindow();
  11.         EditorGUI.FocusTextInControl("find");
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement