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:
authorJoshua Leung <aligorith@gmail.com>2009-01-03 14:35:39 +0300
committerJoshua Leung <aligorith@gmail.com>2009-01-03 14:35:39 +0300
commit7d5847defb332b4b41bc1df39263755c3c250e5f (patch)
tree9cc96da36a47e44f5682040fde3f880da80579bb /source/blender/makesrna
parent38fcc20580fc27994531f8ef49cc06affd6d54a3 (diff)
2.5
* Start of Action/Pose syncing code (in anim_deps.c) This is currently not hooked up yet, as we still need to figure out where these should get called (due to a few dependencies they have - i.e. visibility syncing of channels is turned on/off by setting in appropriate views). * Also added assorted comments/changes to rna/dna
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c
index 0e9f5ba6244..52ae07bc6e1 100644
--- a/source/blender/makesrna/intern/rna_object.c
+++ b/source/blender/makesrna/intern/rna_object.c
@@ -741,12 +741,12 @@ static void rna_def_object(BlenderRNA *brna)
/* action / pose / nla */
prop= RNA_def_property(srna, "action", PROP_POINTER, PROP_NONE);
- RNA_def_property_struct_type(prop, "UnknownType");
+ RNA_def_property_struct_type(prop, "UnknownType"); //action
RNA_def_property_ui_text(prop, "Action", "Action used by object to define Ipo curves.");
prop= RNA_def_property(srna, "pose_library", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "poselib");
- RNA_def_property_struct_type(prop, "UnknownType");
+ RNA_def_property_struct_type(prop, "UnknownType"); // action
RNA_def_property_ui_text(prop, "Pose Library", "Action used as a pose library for armatures.");
prop= RNA_def_property(srna, "pose", PROP_POINTER, PROP_NONE);