mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 06:33:16 +00:00
Fix RigidBody's configuration warning for Z axis
This commit is contained in:
parent
0ee72fbd30
commit
6a5ed3a42b
@ -781,7 +781,7 @@ String RigidBody::get_configuration_warning() const {
|
||||
|
||||
String warning = CollisionObject::get_configuration_warning();
|
||||
|
||||
if ((get_mode() == MODE_RIGID || get_mode() == MODE_CHARACTER) && (ABS(t.basis.get_axis(0).length() - 1.0) > 0.05 || ABS(t.basis.get_axis(1).length() - 1.0) > 0.05 || ABS(t.basis.get_axis(0).length() - 1.0) > 0.05)) {
|
||||
if ((get_mode() == MODE_RIGID || get_mode() == MODE_CHARACTER) && (ABS(t.basis.get_axis(0).length() - 1.0) > 0.05 || ABS(t.basis.get_axis(1).length() - 1.0) > 0.05 || ABS(t.basis.get_axis(2).length() - 1.0) > 0.05)) {
|
||||
if (warning != String()) {
|
||||
warning += "\n";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user