Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/intern/bpy_props.c
| Show First 20 Lines • Show All 151 Lines • ▼ Show 20 Lines | static const EnumPropertyItem property_subtype_number_items[] = { | ||||
| 0, | 0, | ||||
| "Time (Scene Relative)", | "Time (Scene Relative)", | ||||
| "Time specified in frames, converted to seconds based on scene frame rate"}, | "Time specified in frames, converted to seconds based on scene frame rate"}, | ||||
| {PROP_TIME_ABSOLUTE, | {PROP_TIME_ABSOLUTE, | ||||
| "TIME_ABSOLUTE", | "TIME_ABSOLUTE", | ||||
| 0, | 0, | ||||
| "Time (Absolute)", | "Time (Absolute)", | ||||
| "Time specified in seconds, independent of the scene"}, | "Time specified in seconds, independent of the scene"}, | ||||
| {PROP_TIME_ABSOLUTE, "TIME_ABSOLUTE", 0, "Time Absolute", ""}, | |||||
| {PROP_DISTANCE, "DISTANCE", 0, "Distance", ""}, | {PROP_DISTANCE, "DISTANCE", 0, "Distance", ""}, | ||||
| {PROP_DISTANCE_CAMERA, "DISTANCE_CAMERA", 0, "Camera Distance", ""}, | {PROP_DISTANCE_CAMERA, "DISTANCE_CAMERA", 0, "Camera Distance", ""}, | ||||
| {PROP_POWER, "POWER", 0, "Power", ""}, | {PROP_POWER, "POWER", 0, "Power", ""}, | ||||
| {PROP_TEMPERATURE, "TEMPERATURE", 0, "Temperature", ""}, | {PROP_TEMPERATURE, "TEMPERATURE", 0, "Temperature", ""}, | ||||
| {PROP_NONE, "NONE", 0, "None", ""}, | {PROP_NONE, "NONE", 0, "None", ""}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 4,243 Lines • Show Last 20 Lines | |||||