~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to source/gameengine/Ketsji/KX_SteeringActuator.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
                                                KX_GameObject *navmesh,
83
83
                                                float distance,
84
84
                                                float velocity, 
85
 
                                                float acceleration,                                                                     
 
85
                                                float acceleration,
86
86
                                                float turnspeed,
87
87
                                                bool  isSelfTerminated,
88
88
                                                int pathUpdatePeriod,
107
107
        /* --------------------------------------------------------------------- */
108
108
 
109
109
        /* These are used to get and set m_target */
110
 
        static PyObject* pyattr_get_target(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef);
111
 
        static int pyattr_set_target(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef, PyObject *value);
112
 
        static PyObject* pyattr_get_navmesh(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef);
113
 
        static int pyattr_set_navmesh(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef, PyObject *value);
114
 
        static PyObject* pyattr_get_steeringVec(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef);
 
110
        static PyObject *pyattr_get_target(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef);
 
111
        static int       pyattr_set_target(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef, PyObject *value);
 
112
        static PyObject *pyattr_get_navmesh(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef);
 
113
        static int       pyattr_set_navmesh(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef, PyObject *value);
 
114
        static PyObject *pyattr_get_steeringVec(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef);
115
115
        
116
116
 
117
 
#endif // WITH_PYTHON
 
117
#endif  /* WITH_PYTHON */
118
118
 
119
119
}; /* end of class KX_SteeringActuator : public SCA_PropertyActuator */
120
120
 
121
 
#endif
122
 
 
 
121
#endif  /* __KX_STEERINGACTUATOR_H__ */