Skip to content

Commit e470717

Browse files
committed
Fixing Hand grab hints not going away
1 parent 3fa9dc8 commit e470717

File tree

1 file changed

+2
-2
lines changed
  • Assets/SteamVR/InteractionSystem/Core/Scripts

1 file changed

+2
-2
lines changed

Assets/SteamVR/InteractionSystem/Core/Scripts/Hand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1435,12 +1435,12 @@ public void TriggerHapticPulse(float duration, float frequency, float amplitude)
14351435

14361436
public void ShowGrabHint()
14371437
{
1438-
ControllerButtonHints.ShowButtonHint(this, grabGripAction); //todo: assess
1438+
ControllerButtonHints.ShowButtonHint(this, grabGripAction);
14391439
}
14401440

14411441
public void HideGrabHint()
14421442
{
1443-
ControllerButtonHints.HideButtonHint(this, grabGripAction); //todo: assess
1443+
ControllerButtonHints.HideTextHint(this, grabGripAction);
14441444
}
14451445

14461446
public void ShowGrabHint(string text)

0 commit comments

Comments
 (0)