14 lines
243 B
C#
14 lines
243 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class rotatoryGear : MonoBehaviour
|
|
{
|
|
public bool rotationEnabled;
|
|
|
|
public void setRotationEnabledState (bool state)
|
|
{
|
|
rotationEnabled = state;
|
|
}
|
|
}
|