Describe the project you are working on:
2D game.
Describe the problem or limitation you are having in your project:
I often use CollisionShape2D nodes with rectangle shapes. Their problem is that you need to place the rectangle in the middle of the object and expand the extents to match the object's size. Because the extents increase from both sides and it's not always obvious where object's center may be, it often requires trial-and-error to get done correctly, which is simply a waste of time.
Describe how this feature / enhancement will help you overcome this problem or limitation:
If I could change the rectangle's extents with handles on any side, like this is done with scaling Sprites or resizing Control nodes, it would save some time and make adding colliders more friendly.
Show a mock up screenshots/video or a flow diagram explaining how your proposal will work:


Describe implementation detail for your proposal (in code), if possible:
RectangleShapes2D should be edited like Control rectangles. This can be achieved by editing extents of RectangleShape2D and position of CollisionShape2D simultaneously.
If this enhancement will not be used often, can it be worked around with a few lines of script?:
No, it would require a plugin.
Is there a reason why this should be core and not an add-on in the asset library?:
It's a QoL thing for collision shapes.
For the record, this is also an issue with 3D shapes (such as GIProbe and CSG nodes). Last year, I tried to change it in CSG gizmos but failed.
To behave like Control nodes, the following changes need to be done:
Most helpful comment
For the record, this is also an issue with 3D shapes (such as GIProbe and CSG nodes). Last year, I tried to change it in CSG gizmos but failed.
To behave like Control nodes, the following changes need to be done:
There should be 4 handles in 2D and 6 in 3D.Existing handles may need to be moved.