Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_actuator_types.h
| Show First 20 Lines • Show All 228 Lines • ▼ Show 20 Lines | typedef struct bArmatureActuator { | ||||
| float weight; | float weight; | ||||
| float influence; | float influence; | ||||
| float pad; | float pad; | ||||
| struct Object *target; | struct Object *target; | ||||
| struct Object *subtarget; | struct Object *subtarget; | ||||
| } bArmatureActuator; | } bArmatureActuator; | ||||
| typedef struct bSteeringActuator { | typedef struct bSteeringActuator { | ||||
| char pad[5]; | char pad; | ||||
| char flag; | char flag; | ||||
| short facingaxis; | short facingaxis; | ||||
| int type; /* 0=seek, 1=flee, 2=path following */ | int type; /* 0=seek, 1=flee, 2=path following */ | ||||
| float dist; | float dist; | ||||
| float velocity; | float velocity; | ||||
| float acceleration; | float acceleration; | ||||
| float turnspeed; | float turnspeed; | ||||
| int updateTime; | int updateTime; | ||||
| float velzfactor; | |||||
| struct Object *target; | struct Object *target; | ||||
| struct Object *navmesh; | struct Object *navmesh; | ||||
| } bSteeringActuator; | } bSteeringActuator; | ||||
| typedef struct bMouseActuator { | typedef struct bMouseActuator { | ||||
| short type; /* 0=Visibility, 1=Look */ | short type; /* 0=Visibility, 1=Look */ | ||||
| short flag; | short flag; | ||||
| ▲ Show 20 Lines • Show All 339 Lines • Show Last 20 Lines | |||||