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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-06-16 14:22:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-06-16 14:22:41 +0300
commit94eb2647d5ba0f6b712d7595fc3a1f17e62ef73a (patch)
tree8fa7d9e354bdc041762255557867aee1be76b606 /source
parentb986f955e96578e691e3561142b571609957ade0 (diff)
BGE: correct case for createConstraint keyword
Diffstat (limited to 'source')
-rw-r--r--source/gameengine/Ketsji/KX_PyConstraintBinding.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gameengine/Ketsji/KX_PyConstraintBinding.cpp b/source/gameengine/Ketsji/KX_PyConstraintBinding.cpp
index 065251f5676..bfac9a87512 100644
--- a/source/gameengine/Ketsji/KX_PyConstraintBinding.cpp
+++ b/source/gameengine/Ketsji/KX_PyConstraintBinding.cpp
@@ -501,7 +501,7 @@ static PyObject *gPyCreateConstraint(PyObject *self,
float pivotX = 0.0f, pivotY = 0.0f, pivotZ = 0.0f, axisX = 0.0f, axisY = 0.0f, axisZ = 0.0f;
static const char *kwlist[] = {"physicsid_1", "physicsid_2", "constraint_type", "pivot_x", "pivot_y", "pivot_z",
- "axis_X", "axis_y", "axis_z", "flag", NULL};
+ "axis_x", "axis_y", "axis_z", "flag", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "KKi|ffffffi:createConstraint", (char **)kwlist,
&physicsid, &physicsid2, &constrainttype,