Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我想知道如何能够将数据统一输入到文本框中。下图显示了我在说什么
在图像中有 3 个数字输入框,我想知道如何统一创建它并从中获取数字数据。
任何帮助表示赞赏
感谢您
如我所见,您已经拥有
friction = GUI.TextField(new Rect(10, 10, 200, 20), friction, 10);
为了能够将您的 3 个值相乘,您首先需要将它们转换为 float 或 int
float mass = float.parse(friction);
这会将其转换为可用于数学的浮点数
将它们全部转换为浮点数或整数后,如果要显示结果,可以在计算中使用它们,只需使用 toString() 将值转回字符串