WuhuIslandTesting/Library/PackageCache/com.unity.xr.management@4.2.1/Tests/TestPackage/Editor/TestSettingsEditor.cs

14 lines
305 B
C#
Raw Permalink Normal View History

2025-01-07 02:06:59 +01:00
using UnityEditor;
namespace Unity.XR.Management.TestPackage.Editor
{
[CustomEditor(typeof(TestSettings))]
public class TestSettingsEditor : UnityEditor.Editor
{
public override void OnInspectorGUI()
{
EditorGUILayout.LabelField("Test only...");
}
}
}