Skip to content

Commit d8c893a

Browse files
committed
updated comments
1 parent 1a67606 commit d8c893a

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

Assets/MixedRealityToolkit/Definitions/BaseMixedRealityProfile.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
namespace Microsoft.MixedReality.Toolkit
88
{
9+
/// <summary>
10+
/// Base abstract class for all Mixed Reality profile configurations.
11+
/// Extends ScriptableObject and used as a property container to initialize MRTK services.
12+
/// </summary>
913
[Serializable]
1014
public abstract class BaseMixedRealityProfile : ScriptableObject
1115
{

Assets/MixedRealityToolkit/Inspectors/Profiles/DataProviderAccessServiceInspector.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ protected virtual void AddDataProvider()
8888
/// Removed given index item from <see cref="IMixedRealityServiceConfiguration"/> array list.
8989
/// Utilizes GetDataProviderConfigurationList() to get <see cref="SerializedProperty"/> object that represents array to delete against.
9090
/// </summary>
91-
/// <param name="index"></param>
9291
protected virtual void RemoveDataProvider(int index)
9392
{
9493
providerConfigurations.DeleteArrayElementAtIndex(index);

Assets/MixedRealityToolkit/Inspectors/Profiles/MixedRealityCameraProfileInspector.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@
77

88
namespace Microsoft.MixedReality.Toolkit.Editor
99
{
10+
/// <summary>
11+
/// Class handles rendering inspector view of MixedRealityCameraProfile object
12+
/// </summary>
1013
[CustomEditor(typeof(MixedRealityCameraProfile))]
11-
internal class MixedRealityCameraProfileInspector : BaseDataProviderServiceInspector
14+
public class MixedRealityCameraProfileInspector : BaseDataProviderServiceInspector
1215
{
1316
private bool showProviders = false;
1417
private const string showProvidersPreferenceKey = "ShowCameraSystem_DataProviders_PreferenceKey";

Assets/MixedRealityToolkit/Inspectors/Profiles/MixedRealityInputSystemProfileInspector.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@
77

88
namespace Microsoft.MixedReality.Toolkit.Input.Editor
99
{
10+
/// <summary>
11+
/// Class handles rendering inspector view of MixedRealityInputSystemProfile object
12+
/// </summary>
1013
[CustomEditor(typeof(MixedRealityInputSystemProfile))]
11-
internal class MixedRealityInputSystemProfileInspector : BaseDataProviderServiceInspector
14+
public class MixedRealityInputSystemProfileInspector : BaseDataProviderServiceInspector
1215
{
1316
private const string DataProviderErrorMsg = "The Mixed Reality Input System requires one or more data providers.";
1417
private static readonly GUIContent AddProviderContent = new GUIContent("+ Add Data Provider", "Add Data Provider");

Assets/MixedRealityToolkit/Inspectors/Profiles/MixedRealitySpatialAwarenessSystemProfileInspector.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@
77

88
namespace Microsoft.MixedReality.Toolkit.SpatialAwareness.Editor
99
{
10+
/// <summary>
11+
/// Class handles rendering inspector view of MixedRealitySpatialAwarenessSystemProfile object
12+
/// </summary>
1013
[CustomEditor(typeof(MixedRealitySpatialAwarenessSystemProfile))]
11-
internal class MixedRealitySpatialAwarenessSystemProfileInspector : BaseDataProviderServiceInspector
14+
public class MixedRealitySpatialAwarenessSystemProfileInspector : BaseDataProviderServiceInspector
1215
{
1316
private const string ObserverErrorMsg = "The Mixed Reality Spatial Awareness System requires one or more observers.";
1417
private static readonly GUIContent AddObserverContent = new GUIContent("+ Add Spatial Observer", "Add Spatial Observer");

0 commit comments

Comments
 (0)