Exemple #1
0
void RigidBodyBullet::main_shape_resetted() {
	if (get_main_shape())
		btBody->setCollisionShape(get_main_shape());
	else
		btBody->setCollisionShape(BulletPhysicsServer::get_empty_shape());
	set_continuous_collision_detection(is_continuous_collision_detection_enabled()); // Reset
}
Exemple #2
0
void RigidBodyBullet::reload_body() {
	if (space) {
		space->remove_rigid_body(this);
		if (get_main_shape())
			space->add_rigid_body(this);
	}
}
Exemple #3
0
void AreaBullet::main_shape_changed() {
	CRASH_COND(!get_main_shape())
	btGhost->setCollisionShape(get_main_shape());
}