You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ovaCManipulable3DEntity.h 439B

123456789101112131415161718192021222324252627
  1. #pragma once
  2. #include "ova_defines.h"
  3. class CManipulable3DEntity : public OMK::SimulatedObject
  4. {
  5. public:
  6. DECLARE_OBJECT_FACTORY(CManipulable3DEntity);
  7. virtual void init();
  8. virtual void compute();
  9. virtual bool processEvent(OMK::Event* pEvent);
  10. Position m_position;
  11. Orientation m_orientation;
  12. Scale m_oScale;
  13. /*
  14. OMK::Output < OMK::Type::Transform >& m_rTransformOutput;
  15. */
  16. bool m_isGoal = false;
  17. int m_iGoalDat = 0;
  18. };