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:
Diffstat (limited to 'source/gameengine/Ketsji/KX_ParentActuator.h')
-rw-r--r--source/gameengine/Ketsji/KX_ParentActuator.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/gameengine/Ketsji/KX_ParentActuator.h b/source/gameengine/Ketsji/KX_ParentActuator.h
index 40baac6b2b2..ebb7ab59460 100644
--- a/source/gameengine/Ketsji/KX_ParentActuator.h
+++ b/source/gameengine/Ketsji/KX_ParentActuator.h
@@ -39,17 +39,17 @@
class KX_ParentActuator : public SCA_IActuator
{
Py_Header
-
+
/** Mode */
int m_mode;
-
+
/** option */
bool m_addToCompound;
bool m_ghost;
/** Object to set as parent */
SCA_IObject *m_ob;
-
-
+
+
public:
enum KX_PARENTACT_MODE
@@ -68,12 +68,12 @@ public:
SCA_IObject *ob);
virtual ~KX_ParentActuator();
virtual bool Update();
-
+
virtual CValue* GetReplica();
virtual void ProcessReplica();
virtual void Relink(CTR_Map<CTR_HashedPtr, void*> *obj_map);
virtual bool UnlinkObject(SCA_IObject* clientobj);
-
+
#ifdef WITH_PYTHON
/* --------------------------------------------------------------------- */
@@ -83,7 +83,7 @@ public:
/* These are used to get and set m_ob */
static PyObject *pyattr_get_object(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef);
static int pyattr_set_object(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef, PyObject *value);
-
+
#endif /* WITH_PYTHON */
}; /* end of class KX_ParentActuator : public SCA_PropertyActuator */