Open BuyMyMojo opened 5 months ago
When you have the tree actively selected you just press left to go to the parent, but it only works when the tree is active
When you have the tree actively selected you just press left to go to the parent, but it only works when the tree is active
I did mention this in the issue|
without needing to clack back into the scene tree (Pressing the left arrow key does not fill this requirement)
https://github.com/godotengine/godot-proposals/assets/46948241/0dc39d41-c7b1-42f9-bd1b-742b9935903f
I forgot to provide a quick demo of the script running, here it is
Describe the project you are working on
Games
Describe the problem or limitation you are having in your project
When instancing a new scene in the tree it will select the new node as the current one which is useful for quickly moving the object after creating it but then needing to click the parent node before instancing a new node to stop the creation of a nesting doll is a pain.
Describe the feature / enhancement and how it helps to overcome the problem or limitation
A simple keybind to select the parent of the currently selected node without needing to clack back into the scene tree (Pressing the left arrow key does not fill this requirement)
Describe how your proposal will work, with code, pseudo-code, mock-ups, and/or diagrams
root node/parent selected
CTRL + A
/CTRL + SHIFT + A
to spawn a new node Move selected node [Keybind} to reselect parent/root node repeatIf this enhancement will not be used often, can it be worked around with a few lines of script?
add this as an autoload to set CTRL + J to the functionality in a kind of bodjed way using a timer to stop the deselect from happening after the new selection for some reason
Is there a reason why this should be core and not an add-on in the asset library?
A single useful keybind to add a quick boost to level creation/blockout time seems like a good little feature to be in the engine itself as opposed to an addon people need to seek out