mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 00:14:37 +01:00
19 lines
267 B
C#
19 lines
267 B
C#
using UnityEngine;
|
|
|
|
namespace MoleMole
|
|
{
|
|
public class MonoRightStick : MonoBehaviour
|
|
{
|
|
private const float ROTATION_DELTA_X = 5f;
|
|
|
|
private const float ROTATION_DELTA_Y = 3f;
|
|
|
|
public bool isRotating;
|
|
|
|
private void Start()
|
|
{
|
|
isRotating = false;
|
|
}
|
|
}
|
|
}
|