PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University. More...
#include "config_bullet.h"
#include "bulletBaseCharacterControllerNode.h"
#include "bulletBodyNode.h"
#include "bulletBoxShape.h"
#include "bulletCapsuleShape.h"
#include "bulletCharacterControllerNode.h"
#include "bulletConeShape.h"
#include "bulletConeTwistConstraint.h"
#include "bulletContactCallbackData.h"
#include "bulletConstraint.h"
#include "bulletConvexHullShape.h"
#include "bulletConvexPointCloudShape.h"
#include "bulletCylinderShape.h"
#include "bulletMinkowskiSumShape.h"
#include "bulletDebugNode.h"
#include "bulletFilterCallbackData.h"
#include "bulletGenericConstraint.h"
#include "bulletGhostNode.h"
#include "bulletHeightfieldShape.h"
#include "bulletHingeConstraint.h"
#include "bulletMultiSphereShape.h"
#include "bulletPlaneShape.h"
#include "bulletRigidBodyNode.h"
#include "bulletShape.h"
#include "bulletSliderConstraint.h"
#include "bulletSphereShape.h"
#include "bulletSphericalConstraint.h"
#include "bulletSoftBodyNode.h"
#include "bulletSoftBodyShape.h"
#include "bulletTickCallbackData.h"
#include "bulletTriangleMesh.h"
#include "bulletTriangleMeshShape.h"
#include "bulletVehicle.h"
#include "bulletWorld.h"
#include "bulletContactCallbacks.h"
#include "dconfig.h"
#include "pandaSystem.h"
Go to the source code of this file.
Functions | |
Configure (config_bullet) | |
ConfigureFn (config_bullet) | |
void | init_libbullet () |
Initializes the library. More... | |
NotifyCategoryDef (bullet, "") | |
Variables | |
ConfigVariableBool | bullet_additional_damping ("bullet-additional-damping", false, PRC_DESC("Enables additional damping on eachrigid body, in order to reduce " "jitter. Default value is FALSE. Additional damping is an " "experimental feature of the Bullet physics engine. Use with " "care.")) |
ConfigVariableDouble | bullet_additional_damping_angular_factor ("bullet-additional-damping-angular-factor", 0.01, PRC_DESC("Only used when bullet-additional-damping is set to TRUE. " "Default value is 0.01")) |
ConfigVariableDouble | bullet_additional_damping_angular_threshold ("bullet-additional-damping-angular-threshold", 0.01, PRC_DESC("Only used when bullet-additional-damping is set to TRUE. " "Default value is 0.01.")) |
ConfigVariableDouble | bullet_additional_damping_linear_factor ("bullet-additional-damping-linear-factor", 0.005, PRC_DESC("Only used when bullet-additional-damping is set to TRUE. " "Default value is 0.005")) |
ConfigVariableDouble | bullet_additional_damping_linear_threshold ("bullet-additional-damping-linear-threshold", 0.01, PRC_DESC("Only used when bullet-additional-damping is set to TRUE. " "Default value is 0.01")) |
ConfigVariableEnum< BulletWorld::BroadphaseAlgorithm > | bullet_broadphase_algorithm ("bullet-broadphase-algorithm", BulletWorld::BA_dynamic_aabb_tree, PRC_DESC("Specifies the broadphase algorithm to be used by the physics " "engine. Default value is 'aabb' (dynamic aabb tree).")) |
ConfigVariableBool | bullet_enable_contact_events ("bullet-enable-contact-events", false, PRC_DESC("Specifies if events should be send when new contacts are " "created or existing contacts get remove. Warning: enabling " "contact events might create more load on the event queue " "then you might want! Default value is FALSE.")) |
ConfigVariableEnum< BulletWorld::FilterAlgorithm > | bullet_filter_algorithm ("bullet-filter-algorithm", BulletWorld::FA_mask, PRC_DESC("Specifies the algorithm to be used by the physics engine for " "collision filtering. Default value is 'mask'.")) |
ConfigVariableInt | bullet_gc_lifetime ("bullet-gc-lifetime", 256, PRC_DESC("Specifies the lifetime of data clean up be the soft body world " "info garbage collector. Default value is 256.")) |
ConfigVariableInt | bullet_max_objects ("bullet-max-objects", 1024, PRC_DESC("Specifies the maximum number of individual objects within a " "bullet physics world. Default value is 1024.")) |
ConfigVariableDouble | bullet_sap_extents ("bullet-sap-extents", 1000.0, PRC_DESC("Specifies the world extent in all directions. The config variable " "is only used if bullet-broadphase-algorithm is set to 'sap' " "(sweep and prune). Default value is 1000.0.")) |
ConfigVariableInt | bullet_solver_iterations ("bullet-solver-iterations", 10, PRC_DESC("Specifies the number of iterations for the Bullet contact " "solver. This is the native Bullet property " "btContactSolverInfo::m_numIterations. Default value is 10.")) |
ContactAddedCallback | gContactAddedCallback |
ContactDestroyedCallback | gContactDestroyedCallback |
ContactProcessedCallback | gContactProcessedCallback |
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
All rights reserved.
All use of this software is subject to the terms of the revised BSD license. You should have received a copy of this license along with this source code in a file named "LICENSE."
Definition in file config_bullet.cxx.
void init_libbullet | ( | ) |
Initializes the library.
This must be called at least once before any of the functions or classes in this library can be used. Normally it will be called by the static initializers and need not be called explicitly, but special cases exist.
Definition at line 143 of file config_bullet.cxx.
References BulletConvexHullShape::register_with_read_factory(), BulletConvexPointCloudShape::register_with_read_factory(), BulletConeShape::register_with_read_factory(), BulletSphereShape::register_with_read_factory(), BulletCylinderShape::register_with_read_factory(), BulletHeightfieldShape::register_with_read_factory(), BulletMultiSphereShape::register_with_read_factory(), BulletBoxShape::register_with_read_factory(), BulletPlaneShape::register_with_read_factory(), BulletCapsuleShape::register_with_read_factory(), BulletTriangleMeshShape::register_with_read_factory(), BulletTriangleMesh::register_with_read_factory(), BulletDebugNode::register_with_read_factory(), and BulletRigidBodyNode::register_with_read_factory().
Referenced by init_libpandabullet().