-
Notifications
You must be signed in to change notification settings - Fork 57
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
When hover over a function show the graph #157
Comments
To be clear, are you referring to a similar hover-over rendered image like the main viewport tabs work, where if you hover over the non-active tab, you get a rendered image of the underlying scene? So in the case of Orchestrator, if you have the "EventGraph" and a user-defined function tab open in the Orchestrator main panel, if the "EventGraph" is active, hovering over the function tab would show a popup of the rendered graph in a small popup rendered image? |
Thumbnail rendering is more involved than it may seem. We can either try to be slick and only regenerate the thumbnails as necessary, or we can be inefficient and generate the thumbnail on each hover. I'd prefer the former, but presently GDExtension does not expose access to the The complicated part of this is the interaction needed between For now, I'm going to delay adding this just due to its complexity and perhaps when my upstream PR to add |
I think this is a more of a "nice to have" feature then something important. If it's complicated as you say I also think it's much better to way until it gets easier to implement rather then do this just because. Much better to put the time and effort on issues that give more value at the moment, but keep this open until it make sense to do it. |
Description
When we hover a function it will just show some data that is't that usefull. It would be more usefull to have the graph from the function show in the hover window. This would make it much faster to go thru the graph not needing to jump into every function. That will make it easyer to do many small function without needing to hope in and out to see what is going on.
Implementation ideas
When you hover over a function the graph in that function should be visible
The text was updated successfully, but these errors were encountered: