コード例 #1
0
 public SwordEffect(SceneGame world, ProtoEffectDrawable protoEffect, BehaviorSword sword, float bladeLength) : base(world)
 {
     ProtoEffect = protoEffect;
     Sword       = sword;
     BladeLength = bladeLength;
 }
コード例 #2
0
 public VisualEffect(ProtoEffectDrawable protoEffect, Vector2 position)
 {
     ProtoEffect = protoEffect;
     Position    = position;
 }
コード例 #3
0
 public StaticEffect(SceneGame world, ProtoEffectDrawable protoEffect, Vector2 pos) : base(world)
 {
     ProtoEffect = protoEffect;
     Position    = pos;
 }
コード例 #4
0
ファイル: SceneTitle.cs プロジェクト: DaedalusGame/7DRL_2021
 public ParticleGround(ProtoEffectDrawable protoEffect, Vector2 position)
 {
     ProtoEffect = protoEffect;
     Position    = position;
 }