Merge pull request #16932 from groud/fix_collision_shape_selection
Fixes collisions shape selection
This commit is contained in:
commit
eedb85e618
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ protected:
|
||||||
Shape2D(const RID &p_rid);
|
Shape2D(const RID &p_rid);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
virtual bool _edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const { return true; }
|
virtual bool _edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const { return get_rect().has_point(p_point); }
|
||||||
|
|
||||||
void set_custom_solver_bias(real_t p_bias);
|
void set_custom_solver_bias(real_t p_bias);
|
||||||
real_t get_custom_solver_bias() const;
|
real_t get_custom_solver_bias() const;
|
||||||
|
|
Loading…
Reference in a new issue