Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_ID.h
| Show First 20 Lines • Show All 465 Lines • ▼ Show 20 Lines | typedef struct Library { | ||||
| * This is only for convenience, `filepath` is the real path | * This is only for convenience, `filepath` is the real path | ||||
| * used on file read but in some cases its useful to access the absolute one. | * used on file read but in some cases its useful to access the absolute one. | ||||
| * | * | ||||
| * Use #BKE_library_filepath_set() rather than setting `filepath` | * Use #BKE_library_filepath_set() rather than setting `filepath` | ||||
| * directly and it will be kept in sync - campbell | * directly and it will be kept in sync - campbell | ||||
| */ | */ | ||||
| char filepath_abs[1024]; | char filepath_abs[1024]; | ||||
| /** Set for indirectly linked libs, used in the outliner and while reading. */ | /** Set for indirectly linked libraries, used in the outliner and while reading. */ | ||||
| struct Library *parent; | struct Library *parent; | ||||
| struct PackedFile *packedfile; | struct PackedFile *packedfile; | ||||
| ushort tag; | ushort tag; | ||||
| char _pad_0[6]; | char _pad_0[6]; | ||||
| /** Temp data needed by read/write code, and lib-override recursive re-synchronized. */ | /** Temp data needed by read/write code, and lib-override recursive re-synchronized. */ | ||||
| ▲ Show 20 Lines • Show All 679 Lines • Show Last 20 Lines | |||||