Exemple #1
0
 public SimpleTrail(Entity target, int length, WidthDelegate width, ColorDelegate color, Effect effect = null, bool additive = false) : base(target, length, effect, additive)
 {
     _width = width;
     _color = color;
 }
Exemple #2
0
 public RoundedTrail(Entity target, int length, WidthDelegate width, ColorDelegate color, Effect effect = null, bool additive = false, uint smoothness = 10) : base(target, length, width, color, effect, additive)
 {
     _smoothness = smoothness;
 }
Exemple #3
0
 public TriangularTrail(Entity target, int length, WidthDelegate width, ColorDelegate color, Effect effect = null, bool additive = false, float?tipLength = null) : base(target, length, width, color, effect, additive)
 {
     _tipLength = tipLength ?? -1;
 }