📜  更改 inputfield unity 的文本 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:03.980000             🧑  作者: Mango

代码示例1
using UnityEngine.UI;

public InputField example; //creates an inputfield with the name "example"
public string textToPutToInputField = "If I helped you don't forget to upvote!"; //creates a string to give its value to the inputfield

public void SetTheText() //creates a void that we can call in one of our main void
{
example.text = textToPutToInputField; //gives the value of our string to the text of the inputfield
}

//Now, it's written "If I helped you don't forget to upvote!" on the inputfield