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

Remove integer only from distribute points

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

+ 0 - 3
src/PixiEditor.ChangeableDocument/Changeables/Graph/Nodes/Points/DistributePointsNode.cs

@@ -22,8 +22,6 @@ public class DistributePointsNode : Node
 
     public InputProperty<int> MaxPointCount { get; }
 
-    public InputProperty<bool> IntegerOnly { get; }
-
     public InputProperty<int> Seed { get; }
 
     public DistributePointsNode()
@@ -32,7 +30,6 @@ public class DistributePointsNode : Node
 
         Probability = CreateInput<Surface>("Probability", "PROBABILITY", null);
         MaxPointCount = CreateInput("MaxPointCount", "MAX_POINTS", 10);
-        IntegerOnly = CreateInput("IntegerOnly", "INTEGER_ONLY", false);
         Seed = CreateInput("Seed", "SEED", 0);
     }