Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Add Shift + C hotkey to create a nodegraph from selected nodes #2048
base: main
Are you sure you want to change the base?
Add Shift + C hotkey to create a nodegraph from selected nodes #2048
Changes from all commits
7005877
7ac994c
982def5
3f8f4fc
6b5ac80
0f61933
bcb74f2
680f957
aa448b7
9a0d985
b07faaa
c01e96b
344e429
57d738a
a5d9e3e
7a2ad91
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to break the links between nodes so even though they are copied the links are not copied over?
Tried moving this later after the paste but it crashes with some shared ptr de-refencing error. Even with this as is, I've seen hang in refresh if you try and select the surfaceshader in the default marble graph and try this operation then try and go back to the parent.
@lfl-eholthouser pinging you as you know this code much better than I. If you don't delete then a nodegraph is created properly with linked nodes and have not experienced any side-effects.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I found a fix for the linking. Remove this code and add in a new flag to know that a graph has been built. I called this
isBuildGraph
and set it here::Test this flag later on and go up back to the parent and perform a proper "cut".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can add this to my code, thank you !!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kwokcb this works great, thank you !
I am noticing something though.
If I create an
add_float
then create another one by copy and pasting the first one, then select the copy and hit shift + C to create the subgraph, the node does not get cut (but also appears inside the subgraph). Clicking on the node then crashes the editor. The copy also is collapsed and doesn't show its inputs.This seems to be an issue with how pasting and cutting works. If I put down an
add_float
then copy it. Then select both and use ctrl+x to cut, the copy does not get cut.