gpt4 book ai didi

c# - 如何向 EditorGUILayout.TextArea 添加自动换行?

转载 作者:行者123 更新时间:2023-12-02 02:40:08 25 4
gpt4 key购买 nike

Picture showing lack of word wrap in textarea

如何向编辑器文本区域添加自动换行?我正在尝试模仿 [TextArea] 属性(自动换行,需要时自动增加高度)

我知道 GUILayout.TextArea() 可以工作,但我希望使用 EditorGUILayout,因为根据文档,它可以正确响应复制/粘贴、全选等。

我的代码:

obj.talkableFlavorText = EditorGUILayout.TextArea(obj.talkableFlavorText, GUILayout.MinHeight(textAreaHeight));

最佳答案

使用GUIStyle并将wordWrap属性设置为true

基于Unity Editor Window Example的完整示例

using UnityEngine;
using UnityEditor;

public class MyWindow : EditorWindow
{
string myString = "Hello World";

// Add menu named "My Window" to the Window menu
[MenuItem("Window/My Window")]
static void Init()
{
// Get existing open window or if none, make a new one:
MyWindow window = (MyWindow)EditorWindow.GetWindow(typeof(MyWindow));
window.Show();
}

void OnGUI()
{
GUIStyle style = new GUIStyle(EditorStyles.textArea);
style.wordWrap = true;
myString = EditorGUILayout.TextArea(myString, style);
}
}

结果:

enter image description here

关于c# - 如何向 EditorGUILayout.TextArea 添加自动换行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63764003/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com