gpt4 book ai didi

c# - 如何从 UI.InputField 获取文本?

转载 作者:太空狗 更新时间:2023-10-29 23:58:06 26 4
gpt4 key购买 nike

我想从 UI InputField 中检索文本,但我不确定该怎么做。

最佳答案

您可以先以某种方式获取对 gameObject 的引用,然后从中获取 InputField 组件并获取组件的 text 变量:

    GameObject inputFieldGo = GameObject.Find("PathToTheGameObject");
InputField inputFieldCo = inputFieldGo.GetComponent<InputField>();
Debug.Log(inputFieldCo.text);

关于c# - 如何从 UI.InputField 获取文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28292841/

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