-
-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A way to filter tasks in the tree view #192
Comments
Design proposal: Two options
|
Yes, consistency is nice, especially naming consistency. On the other hand, if we went all-in with the Godot-internal node selector design, the filter option would be usable in exactly this way:
This is an improvement, and I am all for it. It's your proposal after all. I'm all ears which direction this should go. |
Don't want to unnecessarily bump this but Tuesday I got some time. I will try to implement this. I will go with @ydeltastars suggestion if nothing else is suggested. @ydeltastar If you are already working on this, please let me know! |
That's how I imagined it too. Similar to the scene tree filter but with an option to hide/show filtered-out tasks which the scene tree doesn't have. Sounds great! I haven't worked on this yet. |
Such functionality would be quite useful 👍 UI needs some consideration - that main toolbar is so packed. Make sure to also take the new layout into consideration. UPDATE: I'm ok with both, filtering or highlighting. The idea with the switch is nice, but if the filter gets several controls, assuming it is placed on the toolbar, it will be too crowded I think. |
Yeah, that can work |
Update: Custom class added for TaskTree simplicity. Exploring selection for navigation and highlighting. Filtering planned for Sunday, may take longer. Open to any feedback. |
Problem statement
While prototyping and editing scripts, I usually need to find all the instances of a task and fix export values, remove them, or just find where it is used.
There is no filter for the tree view so I have to pinpoint tasks by eye, which becomes more difficult as the tree grows larger.
Proposed solution
A filter feature for the behavior tree view similar to the filter in the scene tree.
It can take a name string and optionally a type. Nodes that don't match the filter are hidden but the parent structure is visible.
Usage example, based on the scene tree filter behavior:
can_melee t:BTCheckVar
will show allBTCheckVar
tasks containing "can_melee" in their generated names.can_melee t:checkVar
and_melee t:check
will have the same resultcan_melee t:BTCheckVar NavigateToPos
will show bothBTCheckVar
containing "can_melee" and a custom task namedNavigateToPos
The filter could be fixed on the top like the scene's node tree but since the behavior editor is a main dock, it could work like the script editor's Find feature. It is placed at the bottom, can be accessed with
Ctrl+F
, and can be hidden.Alternatives
N/A
The text was updated successfully, but these errors were encountered: