소스 검색

Fix Line2D not rendering anything when total length is not computed

Timo Schwarzer 6 달 전
부모
커밋
ebef20f556
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      scene/2d/line_builder.cpp

+ 1 - 1
scene/2d/line_builder.cpp

@@ -112,7 +112,7 @@ void LineBuilder::build() {
 		}
 	}
 
-	if (Math::is_zero_approx(total_distance)) {
+	if (point_count < 2 || (distance_required && Math::is_zero_approx(total_distance))) {
 		// Zero-length line, nothing to build.
 		return;
 	}