소스 검색

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)