WebGLUIToolkitTextField.cs 301 B

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