[Bf-blender-cvs] [39600d7c967] blender2.8: Fix own mistake in previous commit.

Bastien Montagne noreply at git.blender.org
Wed Sep 19 16:10:43 CEST 2018


Commit: 39600d7c96798ddf3ef51ad1570b977e9079cc89
Author: Bastien Montagne
Date:   Wed Sep 19 16:09:52 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB39600d7c96798ddf3ef51ad1570b977e9079cc89

Fix own mistake in previous commit.

===================================================================

M	source/blender/makesrna/intern/rna_depsgraph.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_depsgraph.c b/source/blender/makesrna/intern/rna_depsgraph.c
index 62a78115ea1..5be13f08d71 100644
--- a/source/blender/makesrna/intern/rna_depsgraph.c
+++ b/source/blender/makesrna/intern/rna_depsgraph.c
@@ -461,7 +461,7 @@ static void rna_def_depsgraph_instance(BlenderRNA *brna)
 	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE | PROP_EDITABLE);
 	RNA_def_property_multi_array(prop, 2, rna_matrix_dimsize_4x4);
 	RNA_def_property_ui_text(prop, "Generated Matrix", "Generated transform matrix in world space");
-	RNA_def_property_float_funcs(prop, "rna_DepsgraphObjectInstance_matrix_local_get", NULL, NULL);
+	RNA_def_property_float_funcs(prop, "rna_DepsgraphObjectInstance_matrix_world_get", NULL, NULL);
 
 	prop = RNA_def_property(srna, "orco", PROP_FLOAT, PROP_TRANSLATION);
 	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE | PROP_EDITABLE);



More information about the Bf-blender-cvs mailing list