Class ProjectileFactory
java.lang.Object
com.csse3200.game.entities.factories.ProjectileFactory
Factory to create projectile entities with predefined components.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Entity
Creates the base projectile entity with the default components.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.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.
-
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 aimedshooter
- The entity which fired the projectileconfig
- 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 aimedshooter
- The entity which fired the projectile- Returns:
- The projectile entity
-
createBaseBullet
Creates the base projectile entity with the default components.- Returns:
- The base projectile entity
-