File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Assets/HoloToolkit/SpatialMapping/Scripts Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public class TapToPlace : MonoBehaviour, IInputClickHandler
4747 /// </summary>
4848 protected SpatialMappingManager spatialMappingManager ;
4949
50- private virtual void Start ( )
50+ protected virtual void Start ( )
5151 {
5252 // Make sure we have all the components in the scene we need.
5353 anchorManager = WorldAnchorManager . Instance ;
@@ -83,7 +83,7 @@ private virtual void Start()
8383 }
8484 }
8585
86- private virtual void Update ( )
86+ protected virtual void Update ( )
8787 {
8888 // If the user is in placing mode,
8989 // update the placement to match the user's gaze.
@@ -123,7 +123,7 @@ private virtual void Update()
123123 }
124124 }
125125
126- protected virtual void OnInputClicked ( InputEventData eventData )
126+ public virtual void OnInputClicked ( InputEventData eventData )
127127 {
128128 // On each tap gesture, toggle whether the user is in placing mode.
129129 IsBeingPlaced = ! IsBeingPlaced ;
You can’t perform that action at this time.
0 commit comments