设备模拟器支持插件来扩展其功能并更改模拟器视图中控制面板的UI(用户界面) 允许用户与您的应用程序交互。Unity 目前支持三种 UI 系统。 更多信息
参见 术语表。
要创建设备模拟器插件,请扩展DeviceSimulatorPlugin 类。
要将 UI 插入到设备模拟器视图中,您的插件必须
title
属性以返回非空字符串。OnCreateUI
方法以返回包含 UI 的VisualElement。如果您的插件不满足这些条件,则设备模拟器会实例化插件,但不会在模拟器视图中显示其 UI。
以下示例演示了如何创建覆盖标题属性并将 UI 添加到模拟器视图的插件。
public class TouchInfoPlugin : DeviceSimulatorPlugin
{
public override string title => "Touch Info";
private Label m_TouchCountLabel;
private Label m_LastTouchEvent;
private Button m_ResetCountButton;
[SerializeField]
private int m_TouchCount = 0;
public override void OnCreate()
{
deviceSimulator.touchScreenInput += touchEvent =>
{
m_TouchCount += 1;
UpdateTouchCounterText();
m_LastTouchEvent.text = $"Last touch event: {touchEvent.phase.ToString()}";
};
}
public override VisualElement OnCreateUI()
{
VisualElement root = new VisualElement();
m_LastTouchEvent = new Label("Last touch event: None");
m_TouchCountLabel = new Label();
UpdateTouchCounterText();
m_ResetCountButton = new Button {text = "Reset Count" };
m_ResetCountButton.clicked += () =>
{
m_TouchCount = 0;
UpdateTouchCounterText();
};
root.Add(m_LastTouchEvent);
root.Add(m_TouchCountLabel);
root.Add(m_ResetCountButton);
return root;
}
private void UpdateTouchCounterText()
{
if (m_TouchCount > 0)
m_TouchCountLabel.text = $"Touches recorded: {m_TouchCount}";
else
m_TouchCountLabel.text = "No taps recorded";
}
}