Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_scene_types.h
| Show First 20 Lines • Show All 1,360 Lines • ▼ Show 20 Lines | typedef struct MeshStatVis { | ||||
| /* sharp */ | /* sharp */ | ||||
| float sharp_min, sharp_max; | float sharp_min, sharp_max; | ||||
| } MeshStatVis; | } MeshStatVis; | ||||
| /* *************************************************************** */ | /* *************************************************************** */ | ||||
| /* Tool Settings */ | /* Tool Settings */ | ||||
| /* CurvePaintSettings.surface_plane */ | |||||
| enum { | |||||
| AUTO_MERGE = 1 << 0, | |||||
| AUTO_MERGE_AND_SPLIT = 1 << 1, | |||||
| }; | |||||
| typedef struct ToolSettings { | typedef struct ToolSettings { | ||||
| /** Vertex paint. */ | /** Vertex paint. */ | ||||
| VPaint *vpaint; | VPaint *vpaint; | ||||
| /** Weight paint. */ | /** Weight paint. */ | ||||
| VPaint *wpaint; | VPaint *wpaint; | ||||
| Sculpt *sculpt; | Sculpt *sculpt; | ||||
| /** Uv smooth. */ | /** Uv smooth. */ | ||||
| UvSculpt *uvsculpt; | UvSculpt *uvsculpt; | ||||
| ▲ Show 20 Lines • Show All 1,043 Lines • Show Last 20 Lines | |||||