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:
Diffstat (limited to 'source/blender/makesdna/DNA_boid_types.h')
-rw-r--r--source/blender/makesdna/DNA_boid_types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_boid_types.h b/source/blender/makesdna/DNA_boid_types.h
index 6c68ca69363..b9ea97ca27f 100644
--- a/source/blender/makesdna/DNA_boid_types.h
+++ b/source/blender/makesdna/DNA_boid_types.h
@@ -54,7 +54,7 @@ typedef enum eBoidRuleType {
/** move next to a deflector object's in direction of it's tangent */
eBoidRuleType_FollowWall = 12,
#endif
- NUM_BOID_RULE_TYPES
+ NUM_BOID_RULE_TYPES,
} eBoidRuleType;
/* boidrule->flag */
@@ -108,7 +108,7 @@ typedef enum eBoidMode {
eBoidMode_Climbing = 2,
eBoidMode_Falling = 3,
eBoidMode_Liftoff = 4,
- NUM_BOID_MODES
+ NUM_BOID_MODES,
} eBoidMode;
@@ -150,7 +150,7 @@ typedef enum eBoidRulesetType {
eBoidRulesetType_Fuzzy = 0,
eBoidRulesetType_Random = 1,
eBoidRulesetType_Average = 2,
- NUM_BOID_RULESET_TYPES
+ NUM_BOID_RULESET_TYPES,
} eBoidRulesetType;
#define BOIDSTATE_CURRENT 1
typedef struct BoidState {