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 10,797 Lines • ▼ Show 20 Lines | static void def_geo_viewer(StructRNA *srna) | ||||
| 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); | ||||
| RNA_def_property_ui_text(prop, "Data Type", ""); | RNA_def_property_ui_text(prop, "Data Type", ""); | ||||
| RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_GeometryNode_socket_update"); | RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_GeometryNode_socket_update"); | ||||
| prop = RNA_def_property(srna, "domain", PROP_ENUM, PROP_NONE); | |||||
| RNA_def_property_enum_items(prop, rna_enum_attribute_domain_with_auto_items); | |||||
| RNA_def_property_enum_default(prop, ATTR_DOMAIN_POINT); | |||||
| RNA_def_property_ui_text(prop, "Domain", "Domain to evaluate the field on"); | |||||
| RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update"); | |||||
| } | } | ||||
| static void def_geo_realize_instances(StructRNA *srna) | static void def_geo_realize_instances(StructRNA *srna) | ||||
| { | { | ||||
| PropertyRNA *prop; | PropertyRNA *prop; | ||||
| prop = RNA_def_property(srna, "legacy_behavior", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "legacy_behavior", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "custom1", GEO_NODE_REALIZE_INSTANCES_LEGACY_BEHAVIOR); | RNA_def_property_boolean_sdna(prop, NULL, "custom1", GEO_NODE_REALIZE_INSTANCES_LEGACY_BEHAVIOR); | ||||
| ▲ Show 20 Lines • Show All 2,195 Lines • Show Last 20 Lines | |||||