com.alicizax.unity.framework/Runtime/Debugger/DebuggerComponent.WebPlayerInformationWindow.cs

22 lines
599 B
C#
Raw Normal View History

2025-09-05 19:46:30 +08:00
using AlicizaX;
using UnityEngine;
namespace AlicizaX.Debugger.Runtime
{
public sealed partial class DebuggerComponent
{
private sealed class WebPlayerInformationWindow : ScrollableDebuggerWindowBase
{
protected override void OnDrawScrollableWindow()
{
GUILayout.Label("<b>Web Player Information</b>");
GUILayout.BeginVertical("box");
{
DrawItem("Absolute URL", Application.absoluteURL);
}
GUILayout.EndVertical();
}
}
}
}