1
0
mirror of https://github.com/xiaopeng12138/MaiDXR.git synced 2024-11-24 12:00:09 +01:00
MaiDXR/Assets/Scripts/ToggleMove.cs
2022-03-09 20:52:38 +01:00

23 lines
654 B
C#

using UnityEngine;
using UnityEngine.XR.Interaction.Toolkit;
public class ToggleMove : MonoBehaviour
{
void Update()
{
if (Input.GetKeyDown(KeyCode.M))
{
if (GetComponent<ContinuousMoveProviderBase>().enabled)
{
GetComponent<ContinuousMoveProviderBase>().enabled = false;
GetComponent<ContinuousTurnProviderBase>().enabled = false;
}
else
{
GetComponent<ContinuousMoveProviderBase>().enabled = true;
GetComponent<ContinuousTurnProviderBase>().enabled = true;
}
}
}
}