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