Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Samarin <nicks1987@bigmir.net>2010-06-12 01:13:59 +0400
committerNick Samarin <nicks1987@bigmir.net>2010-06-12 01:13:59 +0400
commit147e8d01ebd7b04d81e2094669d8bc9b0f005f19 (patch)
tree12f7d8ab85c775e059b3f4b24042b6ace3d88574 /source/blender/makesdna/DNA_actuator_types.h
parent12b33ca099c57ec793c09b188f6fa1ab2c08beaa (diff)
- added acceleration and turn speed parameters for obstacle simulation
- added debug visualization for object velocities
Diffstat (limited to 'source/blender/makesdna/DNA_actuator_types.h')
-rw-r--r--source/blender/makesdna/DNA_actuator_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_actuator_types.h b/source/blender/makesdna/DNA_actuator_types.h
index d3c37f7c6e3..89709948f50 100644
--- a/source/blender/makesdna/DNA_actuator_types.h
+++ b/source/blender/makesdna/DNA_actuator_types.h
@@ -219,6 +219,8 @@ typedef struct bSteeringActuator {
int type; /* 0=seek, 1=flee, 2=path following */
float dist;
float velocity;
+ float acceleration;
+ float turnspeed;
struct Object *target;
struct Object *navmesh;
} bSteeringActuator;