- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEditorInternal;
using UnityEngine;
[CustomEditor(typeof(ConversationTrigger))]
public class ConversationTriggerEditor : Editor
{
private ConversationTrigger conversationtrigger;
private void OnEnable()
{
conversationtrigger = FindObjectOfType<ConversationTrigger>();
}
public override void OnInspectorGUI()
{
DrawDefaultInspector();
if(GUI.Button(new Rect(0.1f,0.5f,0.1f,0.1f), "Add new item"))
{
conversationtrigger.conversations.Add(new Conversation());
}
if (GUILayout.Button("Save Conversations"))
{
conversationtrigger.SaveConversations();
}
if (GUILayout.Button("Load Conversations"))
{
Undo.RecordObject(conversationtrigger, "Loaded conversations from JSON");
conversationtrigger.LoadConversations();
}
}
}
我试过这一行:
if(GUI.Button(new Rect(0.1f,0.5f,0.1f,0.1f), "Add new item"))
但这会使按钮像删除一样消失。如果我使用的是 GUILayout.Button
,我会看到按钮,但我无法设置按钮位置,所以我使用的是 GUI.Button
。
我想将按钮 “添加新项目”
放置在 Canvas
字段之前,并且始终在最后一个对话项目之后,在本例中为 Locked Room。如果我要添加一个新项目,按钮应该保留在新添加的项目之后和 Canvas
字段之前。
我猜 Rect
的这个值是错误的,使按钮被定位在窗口之外。
这是 Inspector 的屏幕截图:
最佳答案
Rect
的值为 positionX
、positionY
、width
和 height
对于 Inspector,它们以像素为单位。所以
new Rect(0.1f,0.5f,0.1f,0.1f)
只是在当前 Inspector 的 0.1 ,0.5
像素位置上产生一个非常小的 0.1 x 0.1
像素大小按钮。由于您无法在屏幕上显示大小为 0.1
像素的内容,因此它是不可见的。
Afaik 你可以使用 GUILayoutUtility.GetLastRect
为了获得按钮之前最后一个控件的 Rect
,然后使用该 rect 放置按钮,例如
Rect lastRect = GUILayoutUtility.GetLastRect();
Rect buttonRect = new Rect(lastRect.x, lastRect.y + EditorGUIUtility.singleLineHeight, 100, 30);
if(GUI.Button(buttonRect, "AddNewItem")
...
将按钮放在最后一个控件下的下一行,并将其大小设置为 100px * 30px
。
不过,我通常建议不要混合使用 GUI
和 GUILayout
东西。这有点像在 css
中混合 static
和 relative
..
根据您想在此处更改的内容,您可能更愿意使用可选的 options
参数,例如使用
GUILayout.Button("AddNewItem", GUILayout.With(100), GUILayout.Height(30));
按钮在 X 轴上的起始位置,您也可以通过临时更改 EditorGUI.indentLevel 来更改例如
EditorGUI.indentLevel++
GUILayout.Button("AddNewItem", GUILayout.With(100), GUILayout.Height(30));
EditorGUI.indentLevel--;
要更改 Y 方向的位置,您可以使用 EditorGUILayout.Space
EditorGUILayout.Space();
if(GUILayout.Button(...))
为了在按钮和之前的控件之间有一个小的默认空间或GUILayout.Space
比如
GUILayout.Space(30);
if(GUILayout.Button(...))
以像素为单位设置固定空间。
针对您的实际问题
如果你真的想在控件之间放置一个按钮,那么你就不会为整个检查器实现编辑器而不是使用 DrawDefaultInspector
因为这也意味着你必须制作按钮的空间。否则,您可能会在彼此之上获得多个控件。
我不会在这里为你做那个。我们甚至看不到您的类的字段/类型。
但由于您在那里使用列表/数组,我(就像我经常做的那样)再次强烈建议使用未记录的 ReorderableList
这不仅非常花哨,允许您通过拖放重新排列列表中的项目,而且默认实现 Add
和 Remove
按钮。
请问你为什么这样做
conversationtrigger = FindObjectOfType<ConversationTrigger>();
一旦您处理不活动的 GameObject、禁用的 ConversationTrigger
、预制件或场景中这些组件的多个,这就会失败。
在编辑器中,您已经在 target
中获得当前检查的组件.您所要做的就是将其转换为
conversationtrigger = (ConversationTrigger) target;
注意:在智能手机上打字,因此不提供任何保证,但我希望这个想法能清楚
关于c# - 如何在 Inspector 中设置 GUI.Button 的位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56178731/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!