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:
authorWilliam Reynish <william@reynish.com>2009-09-14 17:31:58 +0400
committerWilliam Reynish <william@reynish.com>2009-09-14 17:31:58 +0400
commit733b20f695ab43fb979963b82683aceedf25b8c8 (patch)
tree621942e8aca048dc959f4f070ef2969de5b177e2 /source/blender/makesrna/intern/rna_world.c
parent4539bb9a98efb33044bb54fd9e906e280fdc26bd (diff)
*Changed texture blend property Flip XY to a proper enum.
*Minor adjustments to lamp UI *Fixed issue #19319 (missing notifier)
Diffstat (limited to 'source/blender/makesrna/intern/rna_world.c')
-rw-r--r--source/blender/makesrna/intern/rna_world.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_world.c b/source/blender/makesrna/intern/rna_world.c
index 0ed5016ccd2..d2eebbc61aa 100644
--- a/source/blender/makesrna/intern/rna_world.c
+++ b/source/blender/makesrna/intern/rna_world.c
@@ -431,6 +431,7 @@ void RNA_def_world(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "ambr");
RNA_def_property_array(prop, 3);
RNA_def_property_ui_text(prop, "Ambient Color", "");
+ RNA_def_property_update(prop, NC_WORLD, NULL);
/* exp, range */
prop= RNA_def_property(srna, "exposure", PROP_FLOAT, PROP_NONE);