Implement new cursors

This commit is contained in:
LoafyLemon 2024-05-28 21:10:37 +01:00
parent c2e9c6debc
commit 21ef470c6c
8 changed files with 23 additions and 1 deletions

BIN
game/gui/creamy_pumpkin_pie/cursor_hand.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
game/gui/creamy_pumpkin_pie/cursor_hand_medium.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
game/gui/creamy_pumpkin_pie/cursor_hand_small.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
game/gui/creamy_pumpkin_pie/cursor_pointer.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
game/gui/creamy_pumpkin_pie/cursor_pointer_medium.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
game/gui/creamy_pumpkin_pie/cursor_pointer_small.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -58,6 +58,7 @@ screen close_button_background(action=Return("Close"), keysym=None):
button style "empty":
action action
keysym keysym
mouse "default"
transclude
# Animation effect controller

View File

@ -61,7 +61,10 @@ define config.transparent_tile = False
define config.narrator_menu = True
define config.hard_rollback_limit = 100
define config.history_length = 250
define config.mouse = {"default": [("interface/cursor.webp", 0, 0)]}
define config.mouse = {
"default": [("gui/creamy_pumpkin_pie/cursor_pointer_medium.png", 0, 0)],
"button": [("gui/creamy_pumpkin_pie/cursor_hand_medium.png", 0, 0)],
}
define config.help = None
define config.side_image_only_not_showing = True
define config.allow_underfull_grids = True