Esempio n. 1
0
 public SwordEffect(SceneGame world, ProtoEffectDrawable protoEffect, BehaviorSword sword, float bladeLength) : base(world)
 {
     ProtoEffect = protoEffect;
     Sword       = sword;
     BladeLength = bladeLength;
 }
Esempio n. 2
0
 public VisualEffect(ProtoEffectDrawable protoEffect, Vector2 position)
 {
     ProtoEffect = protoEffect;
     Position    = position;
 }
Esempio n. 3
0
 public StaticEffect(SceneGame world, ProtoEffectDrawable protoEffect, Vector2 pos) : base(world)
 {
     ProtoEffect = protoEffect;
     Position    = pos;
 }
Esempio n. 4
0
 public ParticleGround(ProtoEffectDrawable protoEffect, Vector2 position)
 {
     ProtoEffect = protoEffect;
     Position    = position;
 }