diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-07-23 16:04:32 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-23 16:04:32 -0300 |
commit | dc976cac57bc04de6cdace8d582a48f07afa0a7b (patch) | |
tree | edcabc27a46b50ce492f02fc99ee96b37d32f667 /editor/plugins | |
parent | ec85fd554b0ae9861fddabbda1667a93bdd52450 (diff) | |
parent | 17ebbfb56de980c5529c8a02a12141dd7bb766c8 (diff) |
Merge pull request #12678 from AndreaCatania/soft
Soft body
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/spatial_editor_plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/spatial_editor_plugin.h b/editor/plugins/spatial_editor_plugin.h index 637926a913..af882f6e05 100644 --- a/editor/plugins/spatial_editor_plugin.h +++ b/editor/plugins/spatial_editor_plugin.h @@ -60,6 +60,7 @@ public: virtual Variant get_handle_value(int p_idx) const; virtual void set_handle(int p_idx, Camera *p_camera, const Point2 &p_point); virtual void commit_handle(int p_idx, const Variant &p_restore, bool p_cancel = false); + virtual bool is_gizmo_handle_highlighted(int idx) const { return false; } virtual bool intersect_frustum(const Camera *p_camera, const Vector<Plane> &p_frustum); virtual bool intersect_ray(Camera *p_camera, const Point2 &p_point, Vector3 &r_pos, Vector3 &r_normal, int *r_gizmo_handle = NULL, bool p_sec_first = false); |