com.alicizax.unity.framework/Runtime/Debugger/DebuggerComponent.WebPlayerInformationWindow.cs
2026-04-20 17:38:22 +08:00

22 lines
599 B
C#

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();
}
}
}
}