Skip to content

Commit 2a84e33

Browse files
fixed missing private inspector options
1 parent ef9e418 commit 2a84e33

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Assets/HoloToolkit/Utilities/Scripts/SphereBasedTagalong.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public class SphereBasedTagalong : MonoBehaviour
2020
/// <summary>
2121
/// When moving, use unscaled time. This is useful for games that have a pause mechanism or otherwise adjust the game timescale.
2222
/// </summary>
23+
[SerializeField]
2324
[Tooltip("When moving, use unscaled time. This is useful for games that have a pause mechanism or otherwise adjust the game timescale.")]
2425
private bool useUnscaledTime = true;
2526

@@ -30,9 +31,11 @@ public class SphereBasedTagalong : MonoBehaviour
3031
[Tooltip("Used to initialize the initial position of the SphereBasedTagalong before being hidden on LateUpdate.")]
3132
private bool hideOnStart;
3233

34+
[SerializeField]
3335
[Tooltip("Display the sphere in red wireframe for debugging purposes.")]
3436
private bool debugDisplaySphere;
3537

38+
[SerializeField]
3639
[Tooltip("Display a small green cube where the target position is.")]
3740
private bool debugDisplayTargetPosition;
3841

@@ -92,4 +95,4 @@ public void OnDrawGizmos()
9295
Gizmos.color = oldColor;
9396
}
9497
}
95-
}
98+
}

0 commit comments

Comments
 (0)