Class ProjectileFactory

java.lang.Object
com.csse3200.game.entities.factories.ProjectileFactory

public class ProjectileFactory extends Object
Factory to create projectile entities with predefined components.
  • Constructor Details

    • ProjectileFactory

      public ProjectileFactory()
  • Method Details

    • createEnemyBullet

      public static Entity createEnemyBullet(com.badlogic.gdx.math.Vector2 targetLocation, Entity shooter, EnemyBulletConfig config)
      Creates a projectile, using the stats of the shooter which will fire towards a certain location.
      Parameters:
      targetLocation - The location where the projectile is aimed
      shooter - The entity which fired the projectile
      config - The configuration file to match the bullet to
      Returns:
      The projectile entity
    • createEnemyBullet

      public static Entity createEnemyBullet(com.badlogic.gdx.math.Vector2 targetLocation, Entity shooter)
      Creates A projectile, using the stats of the shooter which will fire towards a certain location.
      Parameters:
      targetLocation - The location where the projectile is aimed
      shooter - The entity which fired the projectile
      Returns:
      The projectile entity
    • createBaseBullet

      public static Entity createBaseBullet()
      Creates the base projectile entity with the default components.
      Returns:
      The base projectile entity