Files

14 lines
243 B
C#
Raw Permalink 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;
}
}