renamed python 'bookmark' attribute to 'useHighPriority', was renamed in the UI but not in python.

This commit is contained in:
2009-05-28 07:11:12 +00:00
parent ca5d429bf9
commit b9d8a2716a
2 changed files with 5 additions and 6 deletions

View File

@@ -244,7 +244,7 @@ PyAttributeDef SCA_IController::Attributes[] = {
KX_PYATTRIBUTE_RO_FUNCTION("state", SCA_IController, pyattr_get_state),
KX_PYATTRIBUTE_RO_FUNCTION("sensors", SCA_IController, pyattr_get_sensors),
KX_PYATTRIBUTE_RO_FUNCTION("actuators", SCA_IController, pyattr_get_actuators),
KX_PYATTRIBUTE_BOOL_RW("bookmark",SCA_IController,m_bookmark),
KX_PYATTRIBUTE_BOOL_RW("useHighPriority",SCA_IController,m_bookmark),
{ NULL } //Sentinel
};