Browse Source

:beetle: Prevent look_at method to fail

Check for the fail case and do nothing instead.

May be not very performant.
DricomDragon 1 year ago
parent
commit
9c1cfcda29
1 changed files with 12 additions and 1 deletions
  1. 12 1
      godot/component/entity/walker/walker.gd

+ 12 - 1
godot/component/entity/walker/walker.gd

@@ -142,7 +142,18 @@ func _get_head_up():
 
 ## Make the player look forward
 func _look_forward(forward: Vector3) -> void:
-	look_at(position + forward)
+	if forward.is_zero_approx():
+		return
+
+	var angle_to_up: float = forward.angle_to(Vector3.UP)
+	const zero_tolerance: float = 0.001
+	var is_vertical: bool = angle_to_up < zero_tolerance or absf(angle_to_up - PI) < zero_tolerance
+	if is_vertical:
+		return
+	else:
+		print("Look from ", position, " to direction ", forward)
+		print("Angle ", forward.angle_to(Vector3.UP))
+		look_at(position + forward)
 
 
 ## Return closest vehicle within reach