This commit is contained in:
Dan Baker 2025-12-02 07:45:23 +00:00
parent 7a8ee29dcb
commit 0fe23420ab
800 changed files with 16547 additions and 0 deletions

6
scripts/inputs.gd Normal file
View file

@ -0,0 +1,6 @@
class_name InputsClass
extends Node
func _ready():
var cursor_texture = load("res://assets/ui/cursorHand_blue.png")
Input.set_custom_mouse_cursor(cursor_texture, Input.CURSOR_POINTING_HAND, Vector2(0, 0))