godot-dockable-container icon indicating copy to clipboard operation
godot-dockable-container copied to clipboard

Dockable/tiling UI panels Container addon for Godot

Results 10 godot-dockable-container issues
Sort by recently updated
recently updated
newest added

Resizing containers in a column or row is not intuitive/straightforward. https://user-images.githubusercontent.com/51489635/181934906-d7fc02a7-1599-44c1-8ac5-602e0db59624.mp4 As you can see from this, trying to resize one container leads to size change in some other container....

enhancement

Take the TestScene.tscn in samples folder for example, run the scene in godot and everything works fine, but after click the close button, Godot console prints below message: ![bug](https://user-images.githubusercontent.com/44429569/172779463-2a5aa619-b5b4-4fe5-8535-043e47794e8f.JPG) Thanks...

Could you add the function that you can move the containers to new windows with the size that the container had before (and back again)? Multible Windows come in Godot...

enhancement

Updated version of #7.

This PR refactors layout node classes (`DockableLayoutNode`, `DockableLayoutPanel` and `DockableLayoutSplit`) to inherit from `RefCounted` instead of `Resource`. This makes all layout data concentrated in a single resource, avoiding sub-resources. Also,...

I added tab title rename logic It allows you to rename tabs without affecting tab node paths as it is now To be honest, this solution looks bad. If you...

You cannot rename a tab without breaking node paths that include this node now

enhancement

After docks rearrangement, sometimes min size for a dock ignores on height resize Example: ![ScreenRecording2024-06-27at00 56 42-ezgif com-video-to-gif-converter](https://github.com/gilzoide/godot-dockable-container/assets/14632982/ce112e75-4f91-4c79-bd7e-bb662faabc66) godot 4.3 beta [Project example](https://github.com/Lemonbrush/GodotDialogComposer/tree/reorderable-container-break-example)

Tried on 4.2.2 and 4.3 beta It seems like the method _notification(what: int) in the split_handle file calls MOUSE_ENTER and MOUSE_EXIT events sequentially at the same time. I fixed that...

Implements #4, a continuation of #18 for Godot 4. Many thanks to @Variable-ind for starting the work! ![Peek 2024-10-09 13-53](https://github.com/user-attachments/assets/bea602b5-c2b2-4426-9599-0e1136bbff2e) Tab containers now have settings with a "Make Floating" option....