Преглед на файлове

Set default color of the rasterize point node to white

CPKreuz преди 1 година
родител
ревизия
9a80050c2b
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/PixiEditor.ChangeableDocument/Changeables/Graph/Nodes/Points/RasterizePointsNode.cs

+ 1 - 1
src/PixiEditor.ChangeableDocument/Changeables/Graph/Nodes/Points/RasterizePointsNode.cs

@@ -24,7 +24,7 @@ public class RasterizePointsNode : Node
     {
         Image = CreateOutput<Surface>("Image", "IMAGE", null);
         Points = CreateInput("Points", "POINTS", PointList.Empty);
-        Color = CreateFuncInput("Color", "COLOR", Colors.Black);
+        Color = CreateFuncInput("Color", "COLOR", Colors.White);
     }
 
     protected override Surface? OnExecute(RenderingContext context)