- Introduced a health bar for flowers, which updates based on the current GameState values. - Enhanced snail behavior with eating and sleeping states. Snails now have a chance to switch to the sleeping state while eating. - Improved mouse interaction with snails, allowing them to potentially switch to sleep mode when clicked. - Refactored cursor management into its own class for better code organization and readability. - Updated drone placement logic to use the new CursorManager class. - Added functionality for bees to replenish flower nectar levels after a certain number of deposits.
15 lines
No EOL
638 B
GDScript
15 lines
No EOL
638 B
GDScript
extends Node
|
|
class_name CursorManager
|
|
|
|
@onready var default_cursor : Resource = preload("res://resources/cursors/pointer_a.png")
|
|
@onready var place_cursor : Resource = preload("res://resources/cursors/target_round_b.png")
|
|
@onready var edit_cursor : Resource = preload("res://resources/cursors/message_dots_round.png")
|
|
|
|
func reset_cursor() -> void:
|
|
Input.set_custom_mouse_cursor(default_cursor, Input.CURSOR_ARROW, Vector2(8, 8))
|
|
|
|
func place() -> void:
|
|
Input.set_custom_mouse_cursor(place_cursor, Input.CURSOR_ARROW, Vector2(32, 32))
|
|
|
|
func edit() -> void:
|
|
Input.set_custom_mouse_cursor(edit_cursor, Input.CURSOR_ARROW, Vector2(32, 32)) |