Bladeren bron

Set default color of the rasterize point node to white

CPKreuz 1 jaar geleden
bovenliggende
commit
9a80050c2b

+ 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)