Ver código fonte

Merge pull request #18247 from volzhs/path-color

Ability to change path color with self modulate
Rémi Verschelde 7 anos atrás
pai
commit
52601d42c4
1 arquivos alterados com 2 adições e 1 exclusões
  1. 2 1
      scene/2d/path_2d.cpp

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

@@ -96,7 +96,7 @@ void Path2D::_notification(int p_what) {
 #else
 		const float line_width = 2;
 #endif
-		const Color color = Color(0.5, 0.6, 1.0, 0.7);
+		const Color color = Color(1.0, 1.0, 1.0, 1.0);
 
 		for (int i = 0; i < curve->get_point_count(); i++) {
 
@@ -151,6 +151,7 @@ void Path2D::_bind_methods() {
 Path2D::Path2D() {
 
 	set_curve(Ref<Curve2D>(memnew(Curve2D))); //create one by default
+	set_self_modulate(Color(0.5, 0.6, 1.0, 0.7));
 }
 
 /////////////////////////////////////////////////////////////////////////////////