Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_group_types.h
| Show First 20 Lines • Show All 46 Lines • ▼ Show 20 Lines | typedef struct GroupObject { | ||||
| char pad[6]; | char pad[6]; | ||||
| } GroupObject; | } GroupObject; | ||||
| typedef struct Group { | typedef struct Group { | ||||
| ID id; | ID id; | ||||
| ListBase gobject; /* GroupObject */ | ListBase gobject; /* GroupObject */ | ||||
| struct PreviewImage *preview; | |||||
| /* Bad design, since layers stored in the scenes 'Base' | /* Bad design, since layers stored in the scenes 'Base' | ||||
| * the objects that show in the group can change depending | * the objects that show in the group can change depending | ||||
| * on the last used scene */ | * on the last used scene */ | ||||
| unsigned int layer; | unsigned int layer; | ||||
| float dupli_ofs[3]; | float dupli_ofs[3]; | ||||
| } Group; | } Group; | ||||
| #endif /* __DNA_GROUP_TYPES_H__ */ | #endif /* __DNA_GROUP_TYPES_H__ */ | ||||