37 lines
1.5 KiB
C#
37 lines
1.5 KiB
C#
//------------------------------------------------------------
|
|
// Game Framework
|
|
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
|
|
// Homepage: https://gameframework.cn/
|
|
// Feedback: mailto:ellan@gameframework.cn
|
|
//------------------------------------------------------------
|
|
|
|
using GameFramework;
|
|
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UnityGameFramework.Runtime
|
|
{
|
|
public sealed partial class DebuggerComponent : GameFrameworkComponent
|
|
{
|
|
private sealed class PathInformationWindow : ScrollableDebuggerWindowBase
|
|
{
|
|
protected override void OnDrawScrollableWindow()
|
|
{
|
|
GUILayout.Label("<b>Path Information</b>");
|
|
GUILayout.BeginVertical("box");
|
|
{
|
|
DrawItem("Current Directory", Utility.Path.GetRegularPath(Environment.CurrentDirectory));
|
|
DrawItem("Data Path", Utility.Path.GetRegularPath(Application.dataPath));
|
|
DrawItem("Persistent Data Path", Utility.Path.GetRegularPath(Application.persistentDataPath));
|
|
DrawItem("Streaming Assets Path", Utility.Path.GetRegularPath(Application.streamingAssetsPath));
|
|
DrawItem("Temporary Cache Path", Utility.Path.GetRegularPath(Application.temporaryCachePath));
|
|
#if UNITY_2018_3_OR_NEWER
|
|
DrawItem("Console Log Path", Utility.Path.GetRegularPath(Application.consoleLogPath));
|
|
#endif
|
|
}
|
|
GUILayout.EndVertical();
|
|
}
|
|
}
|
|
}
|
|
}
|