2025-10-16 12:34:48 +09:00

13 lines
185 B
C#

namespace UnluckSoftware
{
using UnityEngine;
public class HideCursor :MonoBehaviour
{
void Start()
{
Cursor.visible = false;
}
}
}