Class Wall
java.lang.Object
com.csse3200.game.entities.Entity
com.csse3200.game.entities.PlaceableEntity
com.csse3200.game.entities.buildables.Wall
Core wall class. Wall inherits entity and adds the required components and functionality for
a functional wall within the game. All walls have a static body and a WALL ColliderComponent.
Walls' take up 1 tile on the map and have custom health and textures (as defined in configs/walls.json).
Example use:
WallConfig config = new WallConfig();s Entity wall = new Wall(config);
-
Field Summary
Fields inherited from class com.csse3200.game.entities.Entity
components
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.csse3200.game.entities.PlaceableEntity
getHeight, getWidth, irremovable, is_irremovable, placed, removed, willPlace, willRemove
Methods inherited from class com.csse3200.game.entities.Entity
addComponent, create, dispose, earlyUpdate, getCenterPosition, getComponent, getComponents, getEntityType, getEvents, getGridPosition, getId, getPosition, getScale, scaleHeight, scaleWidth, setEnabled, setEntityType, setPosition, setPosition, setPosition, setScale, setScale, toString, update
-
Constructor Details
-
Wall
Constructor to create a Wall entity based on the given config.Predefined wall properties are loaded from a config stored as a json file and should have the properties stored in 'WallConfig'.
-
-
Method Details