internal node
-> builtin node
To trigger this error message, enter the following code at Blender's Python console:
import bpy
class NodeDummy(bpy.types.Node):
bl_idname = 'NodeGroupInput'
bl_label =…
@vitorboschi ah, the code will return null in
rna_Node_unregister
and error out onrna_Node_register_base
, and a new node type is never created. :D
I missed that! Thanks for the…
Even though this patch prevents the crash, it looks to me like it still allows the node to be created with a duplicated, no? Isn't that a problem?
Applied, moved the comment on limitations into a code-comment as it's useful context for anyone reading the code.
@ideasman42 Thanks, that sounds like a good idea. Quick question though: I…
Sometimes tests fail on the buildbot briefly and are fixed. You can usually fix that for a branch by merging main. Sometimes the test files have been updated too, which can cause failures when…
@HooglyBoogly I see the Cycles tests are all failing in the buildbot. Is that some known issue? I find it hard to believe this patch would make (all of) those fail.
Just for testing, I've found that on macOS (and it may be the same for Linux with X11 and Wayland), Blender will detect keyboard inputs outside Blender. So you can press Enter or Return on your…
So it looks like things are a bit more complicated on X11 (and likely on other systems as well): the problem is that we don't receive any click event from outside of the Blender window, so…