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>2009-04-05 18:55:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-04-05 18:55:50 +0400
commit3dacfbb23161a1b779c2c4ac0f06431c5adda6a2 (patch)
tree3259019d0f807562b94051629c2776981f4da694 /source/gameengine/Ketsji/KX_SceneActuator.cpp
parent033a63f8580227582a9695ebdd78ac0b4322e867 (diff)
BGE Python API
- action attribute wasnt checking for NULL (own fault) - KX_Scene getCamera wasnt checking for NULL - CListValue had asserts for not yet implimented functionality, this would close blender. Better to print an error if the user manages to run this functions (I managed to by CListValue.count([1,2,3]))
Diffstat (limited to 'source/gameengine/Ketsji/KX_SceneActuator.cpp')
-rw-r--r--source/gameengine/Ketsji/KX_SceneActuator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gameengine/Ketsji/KX_SceneActuator.cpp b/source/gameengine/Ketsji/KX_SceneActuator.cpp
index f158eb29dd7..e1cd3d45503 100644
--- a/source/gameengine/Ketsji/KX_SceneActuator.cpp
+++ b/source/gameengine/Ketsji/KX_SceneActuator.cpp
@@ -469,7 +469,7 @@ PyObject* KX_SceneActuator::PyGetCamera(PyObject* self,
{
ShowDeprecationWarning("getCamera()", "the camera property");
if (m_camera) {
- PyString_FromString(m_camera->GetName());
+ return PyString_FromString(m_camera->GetName());
}
else {
Py_RETURN_NONE;