WebGLUIToolkitTextField.cs 260 B

12345678910111213
  1. using UnityEngine;
  2. using UnityEngine.UIElements;
  3. namespace WebGLSupport
  4. {
  5. /// <summary>
  6. /// UIToolkit TextField
  7. /// </summary>
  8. public class WebGLUIToolkitTextField : MonoBehaviour
  9. {
  10. public TextField TextField { get; set; }
  11. }
  12. }