Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_nodes.cc
| Context not available. | |||||
| * TODO(Hans): Codify this with some sort of table or refactor IDProperty use in RNA_access.c. | * TODO(Hans): Codify this with some sort of table or refactor IDProperty use in RNA_access.c. | ||||
| */ | */ | ||||
| struct SocketPropertyType { | struct SocketPropertyType { | ||||
| /* Create the actual propery used to store the data for the modifier. */ | /* Create the actual property used to store the data for the modifier. */ | ||||
| IDProperty *(*create_prop)(const bNodeSocket &socket, const char *name); | IDProperty *(*create_prop)(const bNodeSocket &socket, const char *name); | ||||
| /* Reused to build the "soft_min" property too. */ | /* Reused to build the "soft_min" property too. */ | ||||
| IDProperty *(*create_min_ui_prop)(const bNodeSocket &socket, const char *name); | IDProperty *(*create_min_ui_prop)(const bNodeSocket &socket, const char *name); | ||||
| Context not available. | |||||