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:
authorDaniel Dunbar <daniel@zuster.org>2005-07-20 11:11:26 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-07-20 11:11:26 +0400
commitdc232fda472ac6e25578455ec4345a4e3fea1596 (patch)
treef926d7c2daf0b693b2055d30293673bf7e4507b5 /source/blender/blenkernel/BKE_modifier.h
parenteb9d466b486339aeee879917bc02e686bc2fa049 (diff)
Wow! A new feature!
- made ModifierData.isDisabled optional - Added new modifier type: Mirror o modifier system isn't running in editmode yet so still don't have mirrored editing, but otherwise it is pretty cool. code even goes to tricks to make sure mirror join looks nice in degenerate cases. o this kind of commit is basically the upshot of all the previous commits - in that implementing a new modifier changes only about 3 files and still integrates nearly completely.
Diffstat (limited to 'source/blender/blenkernel/BKE_modifier.h')
-rw-r--r--source/blender/blenkernel/BKE_modifier.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_modifier.h b/source/blender/blenkernel/BKE_modifier.h
index 9e10e77dfe7..b0736a1ab72 100644
--- a/source/blender/blenkernel/BKE_modifier.h
+++ b/source/blender/blenkernel/BKE_modifier.h
@@ -76,7 +76,7 @@ typedef struct ModifierTypeInfo {
* tested by the system, this is just if the data validates (for example, a
* lattice will return false if the lattice object is not defined).
*
- * This function must be present.
+ * This function is optional (assumes never disabled if not present).
*/
int (*isDisabled)(struct ModifierData *md);