Changeset View
Changeset View
Standalone View
Standalone View
source/gameengine/Ketsji/KX_ArmatureSensor.h
| Context not available. | |||||
| public: | public: | ||||
| KX_ArmatureSensor(class SCA_EventManager* eventmgr, | KX_ArmatureSensor(class SCA_EventManager* eventmgr, | ||||
| SCA_IObject* gameobj, | SCA_IObject* gameobj, | ||||
| const char *posechannel, | const std::string& posechannel, | ||||
| const char *constraintname, | const std::string& constraintname, | ||||
| int type, | int type, | ||||
| float value); | float value); | ||||
| Context not available. | |||||
| private: | private: | ||||
| struct bConstraint* m_constraint; | struct bConstraint* m_constraint; | ||||
| STR_String m_posechannel; | std::string m_posechannel; | ||||
| STR_String m_constraintname; | std::string m_constraintname; | ||||
| int m_type; | int m_type; | ||||
| float m_value; | float m_value; | ||||
| bool m_result; | bool m_result; | ||||
| Context not available. | |||||