Skip to content

Commit 01fb64a

Browse files
committed
Adding visibility modifier
1 parent d3da61c commit 01fb64a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

org.mixedrealitytoolkit.core/Interactables/MRTKBaseInteractable.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class MRTKBaseInteractable : XRBaseInteractable
1717
{
1818
#region Gaze
1919

20-
readonly List<IGazeInteractor> hoveringGazeInteractors = new List<IGazeInteractor>();
20+
private readonly List<IGazeInteractor> hoveringGazeInteractors = new List<IGazeInteractor>();
2121

2222
/// <summary>
2323
/// (Read Only) The list of <see cref="IGazeInteractor"/> components currently gazing this object.
@@ -28,14 +28,14 @@ public class MRTKBaseInteractable : XRBaseInteractable
2828

2929
#region GazePinch
3030

31-
readonly List<IGazePinchInteractor> hoveringGazePinchInteractors = new List<IGazePinchInteractor>();
31+
private readonly List<IGazePinchInteractor> hoveringGazePinchInteractors = new List<IGazePinchInteractor>();
3232

3333
/// <summary>
3434
/// (Read Only) The list of <see cref="IGazePinchInteractor"/> components currently hovering this object.
3535
/// </summary>
3636
public List<IGazePinchInteractor> HoveringGazePinchInteractors => hoveringGazePinchInteractors;
3737

38-
readonly List<IGazePinchInteractor> selectingGazePinchInteractors = new List<IGazePinchInteractor>();
38+
private readonly List<IGazePinchInteractor> selectingGazePinchInteractors = new List<IGazePinchInteractor>();
3939

4040
/// <summary>
4141
/// (Read Only) The list of <see cref="IGazePinchInteractor"/> components currently selecting this object.
@@ -46,7 +46,7 @@ public class MRTKBaseInteractable : XRBaseInteractable
4646

4747
#region Poke
4848

49-
readonly List<IPokeInteractor> hoveringPokeInteractors = new List<IPokeInteractor>();
49+
private readonly List<IPokeInteractor> hoveringPokeInteractors = new List<IPokeInteractor>();
5050

5151
/// <summary>
5252
/// (Read Only) The list of <see cref="IPokeInteractor"/> components currently hovering this object.
@@ -57,14 +57,14 @@ public class MRTKBaseInteractable : XRBaseInteractable
5757

5858
#region Grab
5959

60-
readonly List<IGrabInteractor> hoveringGrabInteractors = new List<IGrabInteractor>();
60+
private readonly List<IGrabInteractor> hoveringGrabInteractors = new List<IGrabInteractor>();
6161

6262
/// <summary>
6363
/// (Read Only) The list of <see cref="IGrabInteractor"/> components currently hovering this object.
6464
/// </summary>]
6565
public List<IGrabInteractor> HoveringGrabInteractors => hoveringGrabInteractors;
6666

67-
readonly List<IGrabInteractor> selectingGrabInteractors = new List<IGrabInteractor>();
67+
private readonly List<IGrabInteractor> selectingGrabInteractors = new List<IGrabInteractor>();
6868

6969
/// <summary>
7070
/// (Read Only) The list of <see cref="IGrabInteractor"/> components currently selecting this object.
@@ -75,7 +75,7 @@ public class MRTKBaseInteractable : XRBaseInteractable
7575

7676
#region Ray
7777

78-
readonly List<IRayInteractor> hoveringRayInteractors = new List<IRayInteractor>();
78+
private readonly List<IRayInteractor> hoveringRayInteractors = new List<IRayInteractor>();
7979

8080
/// <summary>
8181
/// (Read Only) The list of <see cref="IRayInteractor"/> components currently hovering this object.
@@ -199,7 +199,7 @@ public void DisableInteractorType(SystemInterfaceType type)
199199
}
200200
}
201201
/// <summary>
202-
/// Removes the specified type to the set of interactors which cannot select this interactable
202+
/// Removes the specified type from the set of interactors which cannot select this interactable
203203
/// </summary>
204204
public void EnableInteractorType(SystemInterfaceType type)
205205
{

0 commit comments

Comments
 (0)