Then where should I go if I want to work on this issue, blender-addons
or blender
?
Is it a blender-addons
's issue instead of blender
's issue?
Update Summary
-
move the
RNA_pointer_create(id, &RNA_Node, data, &ptr);
out of theRNA_property_subtype_set
to make it more general. -
Add a
rna_Node_update_individual
to only…
Solution changed
Instead of duplicating multiple properties associated with the same data:
Add a callback function to ntype.updatefunc
. Add some utilities functions in RNA_access.h
(not…
Thanks for the confirmation. Am I allowed to ask more technical questions?
Currently I create a new function draw_buts_value_ex
and added some UI codes like this
uiLayoutSetContextPoint…
Hi @mod_moder, is it correct to create a node_buts_value_ex
for the draw_buttons_ex
function in draw_node.cc
, and write some UI code for the subtype list in this function?
Hi, Can I ask that by subtype do you mean the enum PropertySubType
? Like we should have an option to explicitly set it to something like PROP_ANGLE
?