Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_scene.c
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 5,962 Lines • ▼ Show 20 Lines | #endif | ||||
| RNA_def_property_ui_text(prop, "Stamp Output", "Render the stamp info text in the rendered image"); | RNA_def_property_ui_text(prop, "Stamp Output", "Render the stamp info text in the rendered image"); | ||||
| RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL); | RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL); | ||||
| prop = RNA_def_property(srna, "use_stamp_strip_meta", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_stamp_strip_meta", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "stamp", R_STAMP_STRIPMETA); | RNA_def_property_boolean_sdna(prop, NULL, "stamp", R_STAMP_STRIPMETA); | ||||
| RNA_def_property_ui_text(prop, "Strip Metadata", "Use metadata from the strips in the sequencer"); | RNA_def_property_ui_text(prop, "Strip Metadata", "Use metadata from the strips in the sequencer"); | ||||
| RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL); | RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL); | ||||
| prop = RNA_def_property(srna, "use_stamp_memory", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "stamp", R_STAMP_MEMORY); | |||||
| RNA_def_property_ui_text(prop, "Stamp Peak Memory", "Include the peak memory usage in image metadata"); | |||||
| RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL); | |||||
| prop = RNA_def_property(srna, "stamp_font_size", PROP_INT, PROP_NONE); | prop = RNA_def_property(srna, "stamp_font_size", PROP_INT, PROP_NONE); | ||||
| RNA_def_property_int_sdna(prop, NULL, "stamp_font_id"); | RNA_def_property_int_sdna(prop, NULL, "stamp_font_id"); | ||||
| RNA_def_property_range(prop, 8, 64); | RNA_def_property_range(prop, 8, 64); | ||||
| RNA_def_property_ui_text(prop, "Font Size", "Size of the font used when rendering stamp text"); | RNA_def_property_ui_text(prop, "Font Size", "Size of the font used when rendering stamp text"); | ||||
| RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL); | RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL); | ||||
| prop = RNA_def_property(srna, "stamp_foreground", PROP_FLOAT, PROP_COLOR); | prop = RNA_def_property(srna, "stamp_foreground", PROP_FLOAT, PROP_COLOR); | ||||
| RNA_def_property_float_sdna(prop, NULL, "fg_stamp"); | RNA_def_property_float_sdna(prop, NULL, "fg_stamp"); | ||||
| ▲ Show 20 Lines • Show All 869 Lines • Show Last 20 Lines | |||||