22 lines
599 B
C#
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();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|