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:
authorCampbell Barton <ideasman42@gmail.com>2010-01-19 03:59:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-19 03:59:36 +0300
commit849024df83602758f134695495eb0b19a6993421 (patch)
tree326e326832548b787ad55e3da251ce2391d86df5 /source/blender/python/intern/bpy_operator_wrap.c
parent56660fab4b3aabd931e5ceefbff4cc226969a8e2 (diff)
patch [#20724] Randomize Loc Rot Size py operator for B2.5
written from scratch by Daniel Salazar (zanqdo). added own modifications. New property type bpy.props.FloatVectorProperty(), only difference with float is it takes a 'size' argument and optional 'default' sequence of floats. moved bpy.props.* functions out of bpy_rna.c into their own C file.
Diffstat (limited to 'source/blender/python/intern/bpy_operator_wrap.c')
-rw-r--r--source/blender/python/intern/bpy_operator_wrap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/python/intern/bpy_operator_wrap.c b/source/blender/python/intern/bpy_operator_wrap.c
index ebe063b7c6f..08ccadf141d 100644
--- a/source/blender/python/intern/bpy_operator_wrap.c
+++ b/source/blender/python/intern/bpy_operator_wrap.c
@@ -31,6 +31,7 @@
#include "RNA_define.h"
#include "bpy_rna.h"
+#include "bpy_props.h"
#include "bpy_util.h"
static void operator_properties_init(wmOperatorType *ot)