Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_object_types.h
| Context not available. | |||||
| ListBase sensors; /* game logic sensors */ | ListBase sensors; /* game logic sensors */ | ||||
| ListBase controllers; /* game logic controllers */ | ListBase controllers; /* game logic controllers */ | ||||
| ListBase actuators; /* game logic actuators */ | ListBase actuators; /* game logic actuators */ | ||||
| ListBase components; /* python components */ | |||||
| float sf; /* sf is time-offset */ | float sf; /* sf is time-offset */ | ||||
| Context not available. | |||||
| short softflag; /* softbody settings */ | short softflag; /* softbody settings */ | ||||
| float anisotropicFriction[3]; | float anisotropicFriction[3]; | ||||
| /* dynamic properties */ | |||||
| float friction, rolling_friction, fh, reflect; | |||||
| float fhdist, xyfrict; | |||||
| short dynamode, pad3[3]; | |||||
| ListBase constraints; /* object constraints */ | ListBase constraints; /* object constraints */ | ||||
| ListBase nlastrips DNA_DEPRECATED; // XXX deprecated... old animation system | ListBase nlastrips DNA_DEPRECATED; // XXX deprecated... old animation system | ||||
| ListBase hooks DNA_DEPRECATED; // XXX deprecated... old animation system | ListBase hooks DNA_DEPRECATED; // XXX deprecated... old animation system | ||||
| Context not available. | |||||
| LodLevel *currentlod; | LodLevel *currentlod; | ||||
| struct PreviewImage *preview; | struct PreviewImage *preview; | ||||
| struct Mesh *gamePredefinedBound; | |||||
| } Object; | } Object; | ||||
| /* Warning, this is not used anymore because hooks are now modifiers */ | /* Warning, this is not used anymore because hooks are now modifiers */ | ||||
| Context not available. | |||||
| /* **************** OBJECT ********************* */ | /* **************** OBJECT ********************* */ | ||||
| /* dynamode */ | |||||
| #define OB_FH_NOR 2 | |||||
| /* used many places... should be specialized */ | /* used many places... should be specialized */ | ||||
| #define SELECT 1 | #define SELECT 1 | ||||
| Context not available. | |||||
| OB_NAVMESH = 1 << 20, | OB_NAVMESH = 1 << 20, | ||||
| OB_HASOBSTACLE = 1 << 21, | OB_HASOBSTACLE = 1 << 21, | ||||
| OB_CHARACTER = 1 << 22, | OB_CHARACTER = 1 << 22, | ||||
| OB_RECORD_ANIMATION = 1 << 23, | |||||
| }; | }; | ||||
| /* ob->gameflag2 */ | /* ob->gameflag2 */ | ||||
| Context not available. | |||||