Skip to content

Commit

Permalink
fix(card_base.gd): 删除鼠标指针处理
Browse files Browse the repository at this point in the history
  • Loading branch information
cutekibry committed Feb 15, 2024
1 parent 6cfe64f commit 27598eb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions objects/card_base/card_base.gd
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,12 @@ func _on_mouse_entered():
is_mouse_on = true
if available_stat == DEFAULT:
available_stat = HIGHLIGHT
Input.set_default_cursor_shape(Input.CURSOR_POINTING_HAND)


func _on_mouse_exited():
is_mouse_on = false
if available_stat == HIGHLIGHT:
available_stat = DEFAULT
Input.set_default_cursor_shape(Input.CURSOR_ARROW)


func _on_cards_child_exiting_tree(node: Node) -> void:
Expand Down

0 comments on commit 27598eb

Please sign in to comment.