Remove comments

This commit is contained in:
Santiago Lo Coco 2024-10-27 08:59:01 +01:00
parent b41e4b169f
commit a3e4979e29
1 changed files with 0 additions and 11 deletions

View File

@ -7,17 +7,6 @@ using Microsoft.MixedReality.Toolkit.Input;
public class ConfigurePointer : MonoBehaviour
{
void Start()
{
// PointerUtils.SetMotionControllerRayPointerBehavior(PointerBehavior.AlwaysOff);
// PointerUtils.SetGazePointerBehavior(PointerBehavior.AlwaysOff);
// PointerUtils.SetHandRayPointerBehavior(PointerBehavior.AlwaysOff); --> This is the one we want to disable/enable
}
// make a toggle method for the hand ray pointer. use a bool to keep track of the state
// if the bool is true, disable the hand ray pointer
// if the bool is false, enable the hand ray pointer
// by default it is true.
private bool handRayPointerEnabled = true;
public void ToggleHandRayPointer()