| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #include "BsPhysXCapsuleCollider.h"
- #include "BsPhysX.h"
- #include "PxPhysics.h"
- #include "BsFPhysXCollider.h"
- using namespace physx;
- namespace BansheeEngine
- {
- PhysXCapsuleCollider::PhysXCapsuleCollider(PxPhysics* physx, const Vector3& position, const Quaternion& rotation,
- float radius, float halfHeight)
- :mRadius(radius), mHalfHeight(halfHeight)
- {
- PxCapsuleGeometry geometry(radius, halfHeight);
- PxShape* shape = physx->createShape(geometry, *gPhysX().getDefaultMaterial(), true);
- shape->setLocalPose(toPxTransform(position, rotation));
- shape->userData = this;
- mInternal = bs_new<FPhysXCollider>(shape);
- }
- PhysXCapsuleCollider::~PhysXCapsuleCollider()
- {
- bs_delete(mInternal);
- }
- void PhysXCapsuleCollider::setScale(const Vector3& scale)
- {
- CapsuleCollider::setScale(scale);
- applyGeometry();
- }
- void PhysXCapsuleCollider::setHalfHeight(float halfHeight)
- {
- mHalfHeight = halfHeight;
- applyGeometry();
- }
- float PhysXCapsuleCollider::getHalfHeight() const
- {
- return mHalfHeight;
- }
- void PhysXCapsuleCollider::setRadius(float radius)
- {
- mRadius = radius;
- applyGeometry();
- }
- float PhysXCapsuleCollider::getRadius() const
- {
- return mRadius;
- }
- void PhysXCapsuleCollider::applyGeometry()
- {
- PxCapsuleGeometry geometry(mRadius * std::max(mScale.x, mScale.z), mHalfHeight * mScale.y);
- getInternal()->_getShape()->setGeometry(geometry);
- }
- FPhysXCollider* PhysXCapsuleCollider::getInternal() const
- {
- return static_cast<FPhysXCollider*>(mInternal);
- }
- }
|