public UI.InputField.SubmitEvent onEndEdit ;

描述

编辑结束时要调用的 Unity 事件。

using UnityEngine;
using System.Collections;
using UnityEngine.UI; // Required when Using UI elements.

public class Example : MonoBehaviour { public InputField mainInputField;

// Checks if there is anything entered into the input field. void LockInput(InputField input) { if (input.text.Length > 0) { Debug.Log("Text has been entered"); } else if (input.text.Length == 0) { Debug.Log("Main Input Empty"); } }

public void Start() { //Adds a listener that invokes the "LockInput" method when the player finishes editing the main input field. //Passes the main input field into the method when "LockInput" is invoked mainInputField.onEndEdit.AddListener(delegate {LockInput(mainInputField); }); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961