Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_rna.c
| Show First 20 Lines • Show All 111 Lines • ▼ Show 20 Lines | const EnumPropertyItem rna_enum_property_unit_items[] = { | ||||
| {PROP_UNIT_VOLUME, "VOLUME", 0, "Volume", ""}, | {PROP_UNIT_VOLUME, "VOLUME", 0, "Volume", ""}, | ||||
| {PROP_UNIT_ROTATION, "ROTATION", 0, "Rotation", ""}, | {PROP_UNIT_ROTATION, "ROTATION", 0, "Rotation", ""}, | ||||
| {PROP_UNIT_TIME, "TIME", 0, "Time", ""}, | {PROP_UNIT_TIME, "TIME", 0, "Time", ""}, | ||||
| {PROP_UNIT_VELOCITY, "VELOCITY", 0, "Velocity", ""}, | {PROP_UNIT_VELOCITY, "VELOCITY", 0, "Velocity", ""}, | ||||
| {PROP_UNIT_ACCELERATION, "ACCELERATION", 0, "Acceleration", ""}, | {PROP_UNIT_ACCELERATION, "ACCELERATION", 0, "Acceleration", ""}, | ||||
| {PROP_UNIT_MASS, "MASS", 0, "Mass", ""}, | {PROP_UNIT_MASS, "MASS", 0, "Mass", ""}, | ||||
| {PROP_UNIT_CAMERA, "CAMERA", 0, "Camera", ""}, | {PROP_UNIT_CAMERA, "CAMERA", 0, "Camera", ""}, | ||||
| {PROP_UNIT_POWER, "POWER", 0, "Power", ""}, | {PROP_UNIT_POWER, "POWER", 0, "Power", ""}, | ||||
| {PROP_UNIT_TEMPERATURE, "TEMPERATURE", 0, "Temperature", ""}, | |||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| /** \} */ | /** \} */ | ||||
| #ifdef RNA_RUNTIME | #ifdef RNA_RUNTIME | ||||
| # include "BLI_ghash.h" | # include "BLI_ghash.h" | ||||
| # include "BLI_string.h" | # include "BLI_string.h" | ||||
| ▲ Show 20 Lines • Show All 3,106 Lines • Show Last 20 Lines | |||||