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:
authorAndrea Weikert <elubie@gmx.net>2008-12-04 00:18:10 +0300
committerAndrea Weikert <elubie@gmx.net>2008-12-04 00:18:10 +0300
commit6241b8a57f5f659fe065bafa53f771ec39ba163f (patch)
tree7e190f76edfb437083ee1630d720e94a542c0b3b /source/blender/makesrna/intern/rna_lattice.c
parent10232f2c862c373c6d6b67dbb80719425560bd44 (diff)
RNA
* rna for DNA_key_types.h, also linked to key member of Lattice, others need to be checked.
Diffstat (limited to 'source/blender/makesrna/intern/rna_lattice.c')
-rw-r--r--source/blender/makesrna/intern/rna_lattice.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_lattice.c b/source/blender/makesrna/intern/rna_lattice.c
index 89299e1c6ca..a7bc8d46128 100644
--- a/source/blender/makesrna/intern/rna_lattice.c
+++ b/source/blender/makesrna/intern/rna_lattice.c
@@ -81,6 +81,14 @@ void RNA_def_lattice(BlenderRNA *brna)
prop= RNA_def_property(srna, "outside", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", LT_OUTSIDE);
RNA_def_property_ui_text(prop, "Outside", "Only draw, and take into account, the outer vertices.");
+
+ prop= RNA_def_property(srna, "ipo", PROP_POINTER, PROP_NONE);
+ RNA_def_property_struct_type(prop, "Ipo");
+ RNA_def_property_ui_text(prop, "Ipo", "");
+
+ prop= RNA_def_property(srna, "key", PROP_POINTER, PROP_NONE);
+ RNA_def_property_struct_type(prop, "Key");
+ RNA_def_property_ui_text(prop, "Key", "");
}
#endif