File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Assets/HoloToolkit/Utilities/Scripts Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff 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+ }
You can’t perform that action at this time.
0 commit comments