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:
authorLukas Tönne <lukas.toenne@gmail.com>2015-05-28 13:51:32 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-05-28 13:51:32 +0300
commite233e5f2a89208c2042894b5e9fdf6fecbae9118 (patch)
tree8bf53d94abb6ab57237c18cdffec4aa23922810b /source/blender/makesdna
parent076b65e67787447b40226664039dafb87743b0b5 (diff)
Allow external object targets for the cache shrinkwrap modifier.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_cache_library_types.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_cache_library_types.h b/source/blender/makesdna/DNA_cache_library_types.h
index a18757938c4..88ddaff4802 100644
--- a/source/blender/makesdna/DNA_cache_library_types.h
+++ b/source/blender/makesdna/DNA_cache_library_types.h
@@ -235,11 +235,15 @@ typedef struct ShrinkWrapCacheModifier {
struct Object *object;
int hair_system;
- int pad;
+ int flag;
struct Object *target;
} ShrinkWrapCacheModifier;
+typedef enum eShrinkWrapCacheModifier_Flag {
+ eShrinkWrapCacheModifier_Flag_InternalTarget = (1 << 0),
+} eShrinkWrapCacheModifier_Flag;
+
typedef struct StrandsKeyCacheModifier {
CacheModifier modifier;