| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "BsCorePrerequisites.h"
- #include "BsSphericalJoint.h"
- #include "BsCJoint.h"
- namespace BansheeEngine
- {
- /** @addtogroup Components-Core
- * @{
- */
- /**
- * @copydoc SphericalJoint
- *
- * Wraps SphericalJoint as a Component.
- */
- class BS_CORE_EXPORT CSphericalJoint : public CJoint
- {
- public:
- CSphericalJoint(const HSceneObject& parent);
- /** @copydoc SphericalJoint::getLimit */
- inline LimitConeRange getLimit() const;
- /** @copydoc SphericalJoint::setLimit */
- inline void setLimit(const LimitConeRange& limit);
- /** @copydoc SphericalJoint::setFlag */
- inline void setFlag(SphericalJoint::Flag flag, bool enabled);
- /** @copydoc SphericalJoint::hasFlag */
- inline bool hasFlag(SphericalJoint::Flag flag) const;
- /** @name Internal
- * @{
- */
- /** Returns the spherical joint that this component wraps. */
- SphericalJoint* _getInternal() const { return static_cast<SphericalJoint*>(mInternal.get()); }
- /** @} */
- /************************************************************************/
- /* COMPONENT OVERRIDES */
- /************************************************************************/
- protected:
- friend class SceneObject;
- /** @copydoc CJoint::createInternal */
- SPtr<Joint> createInternal() override;
- SPHERICAL_JOINT_DESC mDesc;
- /************************************************************************/
- /* RTTI */
- /************************************************************************/
- public:
- friend class CSphericalJointRTTI;
- static RTTITypeBase* getRTTIStatic();
- RTTITypeBase* getRTTI() const override;
- protected:
- CSphericalJoint(); // Serialization only
- };
- /** @} */
- }
|