Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_fcurve.c
| Show First 20 Lines • Show All 1,874 Lines • ▼ Show 20 Lines | static void rna_def_drivervar(BlenderRNA *brna) | ||||
| StructRNA *srna; | StructRNA *srna; | ||||
| PropertyRNA *prop; | PropertyRNA *prop; | ||||
| static const EnumPropertyItem prop_type_items[] = { | static const EnumPropertyItem prop_type_items[] = { | ||||
| {DVAR_TYPE_SINGLE_PROP, | {DVAR_TYPE_SINGLE_PROP, | ||||
| "SINGLE_PROP", | "SINGLE_PROP", | ||||
| ICON_RNA, | ICON_RNA, | ||||
| "Single Property", | "Single Property", | ||||
| "Use the value from some RNA property (Default)"}, | "Use the value from some RNA property"}, | ||||
| {DVAR_TYPE_TRANSFORM_CHAN, | {DVAR_TYPE_TRANSFORM_CHAN, | ||||
| "TRANSFORMS", | "TRANSFORMS", | ||||
| ICON_DRIVER_TRANSFORM, | ICON_DRIVER_TRANSFORM, | ||||
| "Transform Channel", | "Transform Channel", | ||||
| "Final transformation value of object or bone"}, | "Final transformation value of object or bone"}, | ||||
| {DVAR_TYPE_ROT_DIFF, | {DVAR_TYPE_ROT_DIFF, | ||||
| "ROTATION_DIFF", | "ROTATION_DIFF", | ||||
| ICON_DRIVER_ROTATIONAL_DIFFERENCE, | ICON_DRIVER_ROTATIONAL_DIFFERENCE, | ||||
| ▲ Show 20 Lines • Show All 665 Lines • Show Last 20 Lines | |||||