Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Verificar se Mouse está encima do button na Godot 4 sem usar signals
- func _physics_process(delta: float) -> void:
- var mouse_position = get_viewport().get_mouse_position()
- var button_rect = $Button.get_global_rect()
- # Verifica se o mouse está dentro dos limites do botão
- if button_rect.has_point(mouse_position):
- print("o mouse está DENTRO do botão")
- else:
- print("o mouse está FORA do botão")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement