Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_texture_types.h
| Show First 20 Lines • Show All 109 Lines • ▼ Show 20 Lines | typedef struct PointDensity { | ||||
| /** psys_color_source */ | /** psys_color_source */ | ||||
| short color_source; | short color_source; | ||||
| short ob_color_source; | short ob_color_source; | ||||
| int totpoints; | int totpoints; | ||||
| /** for 'Object' or 'Particle system' type - source object */ | /** for 'Object' or 'Particle system' type - source object */ | ||||
| struct Object *object; | struct Object *object; | ||||
| /** `index + 1` in ob.particlesystem, non-ID pointer not allowed */ | /** `index + 1` in ob.particle-system, non-ID pointer not allowed. */ | ||||
| int psys; | int psys; | ||||
| /** cache points in world-space, object space, ... ? */ | /** cache points in world-space, object space, ... ? */ | ||||
| short psys_cache_space; | short psys_cache_space; | ||||
| /** cache points in world-space, object space, ... ? */ | /** cache points in world-space, object space, ... ? */ | ||||
| short ob_cache_space; | short ob_cache_space; | ||||
| /** vertex attribute layer for color source, MAX_CUSTOMDATA_LAYER_NAME */ | /** vertex attribute layer for color source, MAX_CUSTOMDATA_LAYER_NAME */ | ||||
| char vertex_attribute_name[64]; | char vertex_attribute_name[64]; | ||||
| ▲ Show 20 Lines • Show All 395 Lines • Show Last 20 Lines | |||||