Exemple #1
0
 public SingleBlur(Set extensions, Set genes, float value)
     : base(extensions, genes, typeof(WFloat), value)
 {
 }
Exemple #2
0
 public Addition(Set extensions, Set genes, float value)
     : base(extensions, genes, typeof(WVector3))
 {
     this.value = value;
 }
Exemple #3
0
 public StructuralModifier(Set extensions)
     : base(extensions)
 {
 }
Exemple #4
0
 public GeneticModifier(Set extensions, Set genes, Type computeType)
     : base(extensions)
 {
     this.TargetedGenes = genes;
     this.computeType = computeType;
 }
Exemple #5
0
 public Blur(Set extensions, Set genes, System.Type type, float value)
     : base(extensions, genes, type)
 {
     this.Value = value;
 }
Exemple #6
0
 public Blur(Set extensions, Set genes, float value)
     : base(extensions, genes, typeof(WVector3))
 {
     this.Value = value;
 }
Exemple #7
0
 public Modifier(Set targetedExtensions)
 {
     this.TargetedExtensions = targetedExtensions;
 }