Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_dynamicpaint_types.h
| Show First 20 Lines • Show All 98 Lines • ▼ Show 20 Lines | |||||
| }; | }; | ||||
| typedef struct DynamicPaintSurface { | typedef struct DynamicPaintSurface { | ||||
| struct DynamicPaintSurface *next, *prev; | struct DynamicPaintSurface *next, *prev; | ||||
| struct DynamicPaintCanvasSettings *canvas; /* for fast RNA access */ | struct DynamicPaintCanvasSettings *canvas; /* for fast RNA access */ | ||||
| struct PaintSurfaceData *data; | struct PaintSurfaceData *data; | ||||
| struct Group *brush_group; | struct Collection *brush_group; | ||||
| struct EffectorWeights *effector_weights; | struct EffectorWeights *effector_weights; | ||||
| /* cache */ | /* cache */ | ||||
| struct PointCache *pointcache; | struct PointCache *pointcache; | ||||
| struct ListBase ptcaches; | struct ListBase ptcaches; | ||||
| int current_frame; | int current_frame; | ||||
| /* surface */ | /* surface */ | ||||
| ▲ Show 20 Lines • Show All 142 Lines • Show Last 20 Lines | |||||