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:
authorJanne Karhu <jhkarh@gmail.com>2009-08-02 23:39:33 +0400
committerJanne Karhu <jhkarh@gmail.com>2009-08-02 23:39:33 +0400
commitdc75023f6ff54d1b7c99360260fa3e70a4e42005 (patch)
treed445af308df4ad8612d0cdd352b48d98b0705a47 /source/blender/blenkernel/BKE_softbody.h
parent7b123ff13c21984c36a44962b5e48d8ae8b69c6e (diff)
Softbody now uses the new pointcache code.
Note: Rna access to softbody point cache is through softbody modifier although the point cache is in softbody settings. This is to make it similar to cloth. Bugfix: Softbody rna was trying to get "ob->soft->softflag" instead of the correct "ob->softflag".
Diffstat (limited to 'source/blender/blenkernel/BKE_softbody.h')
-rw-r--r--source/blender/blenkernel/BKE_softbody.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_softbody.h b/source/blender/blenkernel/BKE_softbody.h
index 971ac7a5f01..0d9682cf842 100644
--- a/source/blender/blenkernel/BKE_softbody.h
+++ b/source/blender/blenkernel/BKE_softbody.h
@@ -69,7 +69,7 @@ extern void sbObjectToSoftbody(struct Object *ob);
extern void sbSetInterruptCallBack(int (*f)(void));
/* writing to cache for bake editing */
-extern void sbWriteCache(struct Object *ob, int framenr);
+extern void softbody_write_cache(struct Object *ob, struct SoftBody *soft, int cfra);
#endif