Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_nodetree.c
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 9,450 Lines • ▼ Show 20 Lines | static void def_geo_curve_sample(StructRNA *srna) | ||||
| prop = RNA_def_property(srna, "mode", PROP_ENUM, PROP_NONE); | prop = RNA_def_property(srna, "mode", PROP_ENUM, PROP_NONE); | ||||
| RNA_def_property_enum_items(prop, mode_items); | RNA_def_property_enum_items(prop, mode_items); | ||||
| RNA_def_property_ui_text(prop, "Mode", "Method for sampling input"); | RNA_def_property_ui_text(prop, "Mode", "Method for sampling input"); | ||||
| RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_socket_update"); | RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_socket_update"); | ||||
| prop = RNA_def_property(srna, "use_all_curves", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_all_curves", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_ui_text(prop, | RNA_def_property_ui_text(prop, | ||||
| "All Curves", | "All Curves", | ||||
| "Sample lengths based on the total lengh of all curves, rather than " | "Sample lengths based on the total length of all curves, rather than " | ||||
| "using a length inside each selected curve"); | "using a length inside each selected curve"); | ||||
| RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_socket_update"); | RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_socket_update"); | ||||
| prop = RNA_def_property(srna, "data_type", PROP_ENUM, PROP_NONE); | prop = RNA_def_property(srna, "data_type", PROP_ENUM, PROP_NONE); | ||||
| RNA_def_property_enum_items(prop, rna_enum_attribute_type_items); | RNA_def_property_enum_items(prop, rna_enum_attribute_type_items); | ||||
| RNA_def_property_enum_funcs( | RNA_def_property_enum_funcs( | ||||
| prop, NULL, NULL, "rna_GeometryNodeAttributeType_type_with_socket_itemf"); | prop, NULL, NULL, "rna_GeometryNodeAttributeType_type_with_socket_itemf"); | ||||
| RNA_def_property_enum_default(prop, CD_PROP_FLOAT); | RNA_def_property_enum_default(prop, CD_PROP_FLOAT); | ||||
| ▲ Show 20 Lines • Show All 3,599 Lines • Show Last 20 Lines | |||||