15 lines
287 B
C#
15 lines
287 B
C#
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.UIElements;
|
||
|
|
using UnityEngine.Windows;
|
||
|
|
|
||
|
|
namespace WebGLSupport
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// UIToolkit TextField
|
||
|
|
/// </summary>
|
||
|
|
public class WebGLUIToolkitTextField : MonoBehaviour
|
||
|
|
{
|
||
|
|
public TextField TextField { get; set; }
|
||
|
|
}
|
||
|
|
}
|