diff options
Diffstat (limited to 'app/factories/bullet.rb')
| -rw-r--r-- | app/factories/bullet.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/factories/bullet.rb b/app/factories/bullet.rb index 160613c..50a68c0 100644 --- a/app/factories/bullet.rb +++ b/app/factories/bullet.rb @@ -1,15 +1,16 @@ class Factory class Bullet - def self.new(damage: 10, x:, y:) + def self.new(x:, y:, damage: 10, vx: 10, vy: 0) puts 'new ent created' sprite = FF::Cmp::Sprite.new sprite.props[:path] = 'sprites/kenny/Tiles/tile_0000.png' FF::Ent.new( sprite, - FF::Cmp::Boid.new(x: x, y: y, vx: 10, w: 16, h: 16), + FF::Cmp::Boid.new(x: x, y: y, vx: vx, vy: vy, w: 16, h: 16), FF::Cmp::SingletonCamera[0], FF::Cmp::Hitcircle.new(r: 10), FF::Cmp::Hp.new(health: 1), + FF::Cmp::Team.new, FF::Cmp::CollisionDamage.new(damage: damage), ) end |
