123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- #include "physics3d/CCPhysics3D.h"
- #if CC_USE_3D_PHYSICS
- #if (CC_ENABLE_BULLET_INTEGRATION)
- NS_CC_BEGIN
- PhysicsSprite3D* PhysicsSprite3D::create(const std::string &modelPath, Physics3DRigidBodyDes* rigidDes, const cocos2d::Vec3& translateInPhysics, const cocos2d::Quaternion& rotInPhsyics)
- {
- auto ret = new (std::nothrow) PhysicsSprite3D();
- if (ret && ret->initWithFile(modelPath))
- {
- auto obj = Physics3DRigidBody::create(rigidDes);
- ret->_physicsComponent = Physics3DComponent::create(obj, translateInPhysics, rotInPhsyics);
- ret->addComponent(ret->_physicsComponent);
- ret->_contentSize = ret->getBoundingBox().size;
- ret->autorelease();
- return ret;
- }
- CC_SAFE_DELETE(ret);
- return ret;
- }
- PhysicsSprite3D* PhysicsSprite3D::createWithCollider(const std::string &modelPath, Physics3DColliderDes* colliderDes, const cocos2d::Vec3& translateInPhysics, const cocos2d::Quaternion& rotInPhsyics)
- {
- auto ret = new (std::nothrow) PhysicsSprite3D();
- if (ret && ret->initWithFile(modelPath))
- {
- auto obj = Physics3DCollider::create(colliderDes);
- ret->_physicsComponent = Physics3DComponent::create(obj, translateInPhysics, rotInPhsyics);
- ret->addComponent(ret->_physicsComponent);
- ret->_contentSize = ret->getBoundingBox().size;
- ret->autorelease();
- return ret;
- }
- CC_SAFE_DELETE(ret);
- return ret;
- }
- Physics3DObject* PhysicsSprite3D::getPhysicsObj() const
- {
- return _physicsComponent->getPhysics3DObject();
- }
- void PhysicsSprite3D::setSyncFlag(Physics3DComponent::PhysicsSyncFlag syncFlag)
- {
- if (_physicsComponent)
- _physicsComponent->setSyncFlag(syncFlag);
- }
- void PhysicsSprite3D::syncNodeToPhysics()
- {
- if (_physicsComponent)
- _physicsComponent->syncNodeToPhysics();
- }
- void PhysicsSprite3D::syncPhysicsToNode()
- {
- if (_physicsComponent)
- _physicsComponent->syncPhysicsToNode();
- }
- PhysicsSprite3D::PhysicsSprite3D()
- : _physicsComponent(nullptr)
- {
-
- }
- PhysicsSprite3D::~PhysicsSprite3D()
- {
-
- }
- NS_CC_END
- #endif
- #endif
|