Browse Source

Merge pull request #18080 from Alexander-Alekseev/fix_rigidbody_config_warning

Fix of RigidBody's configuration warning for Z axis
Rémi Verschelde 7 years ago
parent
commit
07e4556434
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scene/3d/physics_body.cpp

+ 1 - 1
scene/3d/physics_body.cpp

@@ -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";
 		}