版本:Unity 6 (6000.0)
语言英语
  • C#

EditorGUIUtility.FindTexture

建议更改

成功!

感谢你帮助我们改善 Unity 文档的质量。虽然我们无法接受所有提交,但我们会阅读用户建议的每项更改,并在适用的情况下进行更新。

关闭

提交失败

由于某些原因,你的建议更改无法提交。请在几分钟后<a>重试</a>。感谢你花时间帮助我们改善 Unity 文档的质量。

关闭

取消

声明

public static Texture2D FindTexture(string name);

描述

从其源文件名获取纹理。


检查纹理路径。

// Simple editor window that lets you quick check a path of
// a texture in the editor.
//
// If the path exists then it shows a message
// else displays an error message

using UnityEngine; using UnityEditor;

public class FindTextureExample : EditorWindow { string s;

[MenuItem("Examples/Find editor texture")] static void findTextureExample() { FindTextureExample window = EditorWindow.GetWindow<FindTextureExample>(true); window.Show(); }

void OnGUI() { s = EditorGUILayout.TextField("Texture To Locate:", s);

if (GUILayout.Button("Check")) if (EditorGUIUtility.FindTexture(s)) { Debug.Log("Texture found at: " + s); } else { Debug.Log("No texture found at: " + s + ". Check your filename."); } } }

注意:此函数仅用于搜索编辑器图标。