Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Scripts / UI / Main Menu / CursorManagerMM.cs
@Rackday Rackday on 18 Aug 330 bytes Project Added
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class CursorManagerMM : MonoBehaviour
  5. {
  6. public Texture2D cursorTexture;
  7. // Start is called before the first frame update
  8. void Start()
  9. {
  10. Cursor.SetCursor(cursorTexture, Vector2.zero, CursorMode.ForceSoftware);
  11. }
  12. }