Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_curve.c
| Context not available. | |||||
| PropertyRNA *prop; | PropertyRNA *prop; | ||||
| /* number values */ | /* number values */ | ||||
| prop = RNA_def_property(srna, "path_duration", PROP_INT, PROP_NONE); | prop = RNA_def_property(srna, "path_duration", PROP_INT, PROP_TIME); | ||||
| RNA_def_property_int_sdna(prop, NULL, "pathlen"); | RNA_def_property_int_sdna(prop, NULL, "pathlen"); | ||||
| RNA_def_property_range(prop, 1, MAXFRAME); | RNA_def_property_range(prop, 1, MAXFRAME); | ||||
| RNA_def_property_ui_text(prop, "Path Length", | RNA_def_property_ui_text(prop, "Path Length", | ||||
| Context not available. | |||||
| "Surface resolution in V direction used while rendering (zero uses preview resolution)"); | "Surface resolution in V direction used while rendering (zero uses preview resolution)"); | ||||
| prop = RNA_def_property(srna, "eval_time", PROP_FLOAT, PROP_NONE); | prop = RNA_def_property(srna, "eval_time", PROP_FLOAT, PROP_UNIT_LENGTH); | ||||
| RNA_def_property_float_sdna(prop, NULL, "ctime"); | RNA_def_property_float_sdna(prop, NULL, "ctime"); | ||||
| RNA_def_property_ui_text(prop, "Evaluation Time", | RNA_def_property_ui_text(prop, "Evaluation Time", | ||||
| "Parametric position along the length of the curve that Objects 'following' it should be " | "Parametric position along the length of the curve that Objects 'following' it should be " | ||||
| Context not available. | |||||