Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_image.c
| Context not available. | |||||
| RNA_def_property_update(prop, NC_IMAGE | ND_DISPLAY, "rna_Image_generated_update"); | RNA_def_property_update(prop, NC_IMAGE | ND_DISPLAY, "rna_Image_generated_update"); | ||||
| RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); | RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); | ||||
| prop = RNA_def_property(srna, "generated_width", PROP_INT, PROP_NONE); | prop = RNA_def_property(srna, "generated_width", PROP_INT, PROP_PIXEL); | ||||
| RNA_def_property_int_sdna(prop, NULL, "gen_x"); | RNA_def_property_int_sdna(prop, NULL, "gen_x"); | ||||
| RNA_def_property_flag(prop, PROP_PROPORTIONAL); | RNA_def_property_flag(prop, PROP_PROPORTIONAL); | ||||
| RNA_def_property_range(prop, 1, 65536); | RNA_def_property_range(prop, 1, 65536); | ||||
| Context not available. | |||||
| RNA_def_property_update(prop, NC_IMAGE | ND_DISPLAY, "rna_Image_generated_update"); | RNA_def_property_update(prop, NC_IMAGE | ND_DISPLAY, "rna_Image_generated_update"); | ||||
| RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); | RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); | ||||
| prop = RNA_def_property(srna, "generated_height", PROP_INT, PROP_NONE); | prop = RNA_def_property(srna, "generated_height", PROP_INT, PROP_PIXEL); | ||||
| RNA_def_property_int_sdna(prop, NULL, "gen_y"); | RNA_def_property_int_sdna(prop, NULL, "gen_y"); | ||||
| RNA_def_property_flag(prop, PROP_PROPORTIONAL); | RNA_def_property_flag(prop, PROP_PROPORTIONAL); | ||||
| RNA_def_property_range(prop, 1, 65536); | RNA_def_property_range(prop, 1, 65536); | ||||
| Context not available. | |||||