Files
FueraDeEscala/Assets/Game Kit Controller/Scripts/Others/rotatoryGear.cs

14 lines
243 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class rotatoryGear : MonoBehaviour
{
public bool rotationEnabled;
public void setRotationEnabledState (bool state)
{
rotationEnabled = state;
}
}