1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Add mouse_shape_entered and mouse_shape_exited signals to CollisionObject2D.

Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
This commit is contained in:
sygi
2021-03-26 17:39:05 +00:00
parent a82765a464
commit 6f3e7f7cb0
8 changed files with 115 additions and 43 deletions

View File

@@ -84,6 +84,8 @@ public:
StringName mouse_entered;
StringName mouse_exited;
StringName mouse_shape_entered;
StringName mouse_shape_exited;
StringName focus_entered;
StringName focus_exited;
@@ -182,6 +184,8 @@ public:
StringName _mouse_enter;
StringName _mouse_exit;
StringName _mouse_shape_enter;
StringName _mouse_shape_exit;
StringName frame_changed;