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>2008-12-01 19:59:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-12-01 19:59:18 +0300
commit6a73a27d8100f2f6292125cd8ea78573402a43cd (patch)
treefdd106360d6493d97b0a33bf17bdf9e0e989de20 /source/blender/makesrna
parent7c94f5314b500543ea678f80deea501a42681552 (diff)
PyRNA structs and properties can now be subtyped to add functionality in python.
rna_actuator.c was missing an enum
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_actuator.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_actuator.c b/source/blender/makesrna/intern/rna_actuator.c
index e044da24943..b8516123452 100644
--- a/source/blender/makesrna/intern/rna_actuator.c
+++ b/source/blender/makesrna/intern/rna_actuator.c
@@ -52,6 +52,7 @@ void RNA_def_actuator(BlenderRNA *brna)
{ACT_SCENE, "SCENE", "Scene", ""},
{ACT_RANDOM, "RANDOM", "Random", ""},
{ACT_MESSAGE, "MESSAGE", "Message", ""},
+ {ACT_ACTION, "ACTION", "Action", ""},
{ACT_CD, "CD", "CD", ""},
{ACT_GAME, "GAME", "Game", ""},
{ACT_VISIBILITY, "VISIBILITY", "Visibility", ""},