TO SQUASH: Added cursor setter.

This commit is contained in:
2026-08-10 21:35:53 -04:00
parent 456b5d998e
commit 11ce9bcb47
36 changed files with 4175 additions and 7 deletions
+12
View File
@@ -0,0 +1,12 @@
using UnityEngine;
public class CursorSetter : MonoBehaviour
{
public Texture2D cursorTexture;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
Cursor.SetCursor(cursorTexture, new Vector2(3, 3), CursorMode.Auto);
}
}
@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: d3433aa74b8a8fb1a96b46f7914ff9c3