|
@@ -1104,10 +1104,10 @@ void RigidBody::_reload_physics_characteristics() {
|
|
|
//////////////////////////////////////////////////////
|
|
|
//////////////////////////
|
|
|
|
|
|
-Ref<KinematicCollision> KinematicBody::_move(const Vector3 &p_motion, bool p_infinite_inertia, bool p_test_only) {
|
|
|
+Ref<KinematicCollision> KinematicBody::_move(const Vector3 &p_motion, bool p_infinite_inertia, bool p_exclude_raycast_shapes, bool p_test_only) {
|
|
|
|
|
|
Collision col;
|
|
|
- if (move_and_collide(p_motion, p_infinite_inertia, col, p_test_only)) {
|
|
|
+ if (move_and_collide(p_motion, p_infinite_inertia, col, p_exclude_raycast_shapes, p_test_only)) {
|
|
|
if (motion_cache.is_null()) {
|
|
|
motion_cache.instance();
|
|
|
motion_cache->owner = this;
|
|
@@ -1121,11 +1121,11 @@ Ref<KinematicCollision> KinematicBody::_move(const Vector3 &p_motion, bool p_inf
|
|
|
return Ref<KinematicCollision>();
|
|
|
}
|
|
|
|
|
|
-bool KinematicBody::move_and_collide(const Vector3 &p_motion, bool p_infinite_inertia, Collision &r_collision, bool p_test_only) {
|
|
|
+bool KinematicBody::move_and_collide(const Vector3 &p_motion, bool p_infinite_inertia, Collision &r_collision, bool p_exclude_raycast_shapes, bool p_test_only) {
|
|
|
|
|
|
Transform gt = get_global_transform();
|
|
|
PhysicsServer::MotionResult result;
|
|
|
- bool colliding = PhysicsServer::get_singleton()->body_test_motion(get_rid(), gt, p_motion, p_infinite_inertia, &result);
|
|
|
+ bool colliding = PhysicsServer::get_singleton()->body_test_motion(get_rid(), gt, p_motion, p_infinite_inertia, &result, p_exclude_raycast_shapes);
|
|
|
|
|
|
if (colliding) {
|
|
|
r_collision.collider_metadata = result.collider_metadata;
|
|
@@ -1280,7 +1280,7 @@ Vector3 KinematicBody::move_and_slide_with_snap(const Vector3 &p_linear_velocity
|
|
|
Collision col;
|
|
|
Transform gt = get_global_transform();
|
|
|
|
|
|
- if (move_and_collide(p_snap, p_infinite_inertia, col, true)) {
|
|
|
+ if (move_and_collide(p_snap, p_infinite_inertia, col, false, true)) {
|
|
|
|
|
|
bool apply = true;
|
|
|
if (p_floor_direction != Vector3()) {
|
|
@@ -1415,7 +1415,7 @@ Ref<KinematicCollision> KinematicBody::_get_slide_collision(int p_bounce) {
|
|
|
|
|
|
void KinematicBody::_bind_methods() {
|
|
|
|
|
|
- ClassDB::bind_method(D_METHOD("move_and_collide", "rel_vec", "infinite_inertia", "test_only"), &KinematicBody::_move, DEFVAL(true), DEFVAL(false));
|
|
|
+ ClassDB::bind_method(D_METHOD("move_and_collide", "rel_vec", "infinite_inertia", "exclude_raycast_shapes", "test_only"), &KinematicBody::_move, DEFVAL(true), DEFVAL(true), DEFVAL(false));
|
|
|
ClassDB::bind_method(D_METHOD("move_and_slide", "linear_velocity", "floor_normal", "stop_on_slope", "max_slides", "floor_max_angle", "infinite_inertia"), &KinematicBody::move_and_slide, DEFVAL(Vector3(0, 0, 0)), DEFVAL(false), DEFVAL(4), DEFVAL(Math::deg2rad((float)45)), DEFVAL(true));
|
|
|
ClassDB::bind_method(D_METHOD("move_and_slide_with_snap", "linear_velocity", "snap", "floor_normal", "stop_on_slope", "max_slides", "floor_max_angle", "infinite_inertia"), &KinematicBody::move_and_slide_with_snap, DEFVAL(Vector3(0, 0, 0)), DEFVAL(false), DEFVAL(4), DEFVAL(Math::deg2rad((float)45)), DEFVAL(true));
|
|
|
|