-
Notifications
You must be signed in to change notification settings - Fork 352
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
Fix graph editor defect for name setting #1431
Fix graph editor defect for name setting #1431
Conversation
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.
Thanks for this great proposal, @ZelboK, and I've written up a couple of suggestions for changes below.
…#1422) As discussed on Slack, add a line clarifying that an image node will output the first N channels from the image file if the image file has more channels than the image node. Also updated the link target for the surface_unlit node to conform to naming conventions used in other nodes with underscores in their name.
22a9284
to
e3c7e32
Compare
I wanted to follow up on this proposal, @ZelboK, to see if you have the bandwidth to bring it over the finish line. If so, then there's some discussion above on how to move forward with a broader solution that we can merge. Let us know! |
The graph editor has a problem where if you highlight the name in the imgui textbox and press the delete key, it will cause a cycle exception. This isn't caught anywhere, thus leading to crashes.
As such, just a simple method that checks if the name is empty(and if it is, fixes it) is enough to avoid this issue.