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 8,059 Lines • ▼ Show 20 Lines | RNA_def_property_ui_text( | ||||
| prop, | prop, | ||||
| "Projector", | "Projector", | ||||
| "Enable/disable projector mode (the effect is applied in horizontal direction only)"); | "Enable/disable projector mode (the effect is applied in horizontal direction only)"); | ||||
| RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update"); | RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update"); | ||||
| prop = RNA_def_property(srna, "use_jitter", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_jitter", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "jit", 1); | RNA_def_property_boolean_sdna(prop, NULL, "jit", 1); | ||||
| RNA_def_property_ui_text(prop, "Jitter", "Enable/disable jittering (faster, but also noisier)"); | RNA_def_property_ui_text(prop, "Jitter", "Enable/disable jittering (faster, but also noisier)"); | ||||
| RNA_def_property_translation_context(prop, BLT_I18NCONTEXT_ID_NODETREE); | |||||
| RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update"); | RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update"); | ||||
| prop = RNA_def_property(srna, "use_fit", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_fit", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "fit", 1); | RNA_def_property_boolean_sdna(prop, NULL, "fit", 1); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| prop, | prop, | ||||
| "Fit", | "Fit", | ||||
| "For positive distortion factor only: scale image such that black areas are not visible"); | "For positive distortion factor only: scale image such that black areas are not visible"); | ||||
| ▲ Show 20 Lines • Show All 4,860 Lines • Show Last 20 Lines | |||||