1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Fix mismatch between RigidBody(2D) and Body(2D)SW can_sleep defaults.

- Set Body2DSW can_sleep default to true.

- Set Body2D can_sleep default to true.
This commit is contained in:
Marcel Admiraal
2019-10-12 08:02:03 +02:00
parent 74ab8be57a
commit 42a9ae7a82
2 changed files with 2 additions and 2 deletions

View File

@@ -794,7 +794,7 @@ BodySW::BodySW() :
still_time = 0;
continuous_cd = false;
can_sleep = false;
can_sleep = true;
fi_callback = NULL;
}

View File

@@ -694,7 +694,7 @@ Body2DSW::Body2DSW() :
still_time = 0;
continuous_cd_mode = Physics2DServer::CCD_MODE_DISABLED;
can_sleep = false;
can_sleep = true;
fi_callback = NULL;
}