rect | 要绘制的矩形的位置和大小。 |
color | 该矩形的颜色。 |
在当前编辑器窗口中的指定位置以指定大小绘制一个着色的矩形。
使用此方法为您想要在编辑器中游戏对象的 Inspector 窗口中突出显示的区域提供颜色块。您还可以使用它们在编辑器中模拟统计信息,例如,编辑器内的生命条。
//First, create a script called “MyScript” and attach it to the Inspector window you would like to effect.You can create your own script name, but remember to change it in the script too. //Create a folder and name it “Editor” in the Assets folder (if it doesn’t already exist). Put this script into the Editor folder to see it work automatically.
using UnityEngine; using UnityEditor;
// Uncomment the following line after replacing "MyScript" with your script name: // [CustomEditor(typeof(MyScript))] [CanEditMultipleObjects] public class EditorGUIDrawRectExample : Editor { //This is the value of the Slider float m_Value;
public override void OnInspectorGUI() { //This is the Label for the Slider GUI.Label(new Rect(0, 300, 100, 30), "Rectangle Width"); //This is the Slider that changes the size of the Rectangle drawn m_Value = GUI.HorizontalSlider(new Rect(100, 300, 100, 30), m_Value, 1.0f, 250.0f);
//The rectangle is drawn in the Editor (when MyScript is attached) with the width depending on the value of the Slider EditorGUI.DrawRect(new Rect(50, 350, m_Value, 70), Color.green); } }
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.