Class PhysicsUtils

java.lang.Object
com.csse3200.game.physics.PhysicsUtils

public class PhysicsUtils extends Object
  • Method Details

    • setScaledCollider

      public static void setScaledCollider(Entity entity, float scaleX, float scaleY)
    • setCustomCollider

      public static void setCustomCollider(Entity entity, float sizeX, float sizeY, float posX, float posY)
      Modifies the collider of an entity to be a rectangle of a specified size with the corner being in the specified relative coordinates
      Parameters:
      entity - the entity the collider is bound to
      sizeX - the length of the new collision box
      sizeY - the height of the new collision box
      posX - the relative x coordinate of the top left corner of the collision box
      posY - the relative y coordinate of the top left corner of the collision box