Uses of Enum Class
com.codingame.gameengine.module.entities.Curve

Packages that use Curve
  • Uses of Curve in com.codingame.gameengine.module.entities

    Modifier and Type
    Method
    Description
    static Curve
    Curve.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static Curve[]
    Curve.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in com.codingame.gameengine.module.entities with parameters of type Curve
    Modifier and Type
    Method
    Description
    protected void
    Entity.set(String key, Object value, Curve curve)
     
    Entity.setAlpha(double alpha, Curve curve)
    Sets the alpha of this Entity as a percentage.
    TextureBasedEntity.setAnchorX(double anchorX, Curve curve)
    Sets the X anchor of this TextureBasedEntity as a percentage of its width.
    TextureBasedEntity.setAnchorY(double anchorY, Curve curve)
    Sets the Y anchor of this TextureBasedEntity as a percentage of its width.
    Shape.setFillAlpha(double alpha, Curve curve)
    Sets the alpha of the fill of this Shape as a percentage.
    Shape.setFillColor(int color, Curve curve)
    Sets the color of the fill of this Shape as an RGB integer.
    Text.setFillColor(int fillColor, Curve curve)
    Sets the color of the fill of this Text as an RGB integer.
    TextBasedEntity.setFontSize(int fontSize, Curve curve)
    Sets the size of the font of this TextBasedEntity in px.
    Rectangle.setHeight(int height, Curve curve)
    Sets the height of this Rectangle in world units.
    RoundedRectangle.setHeight(int height, Curve curve)
    Sets the height of this RoundedRectangle in world units.
    Shape.setLineAlpha(double alpha, Curve curve)
    Sets the alpha of the border of this Shape as a percentage.
    Shape.setLineColor(int lineColor, Curve curve)
    Sets the color of the border of this Shape as an RGB integer.
    Shape.setLineWidth(double lineWidth, Curve curve)
    Sets the width of the border of this Shape in world units.
    Sets the transition used to animate the positions of each point.
    Circle.setRadius(int radius, Curve curve)
    Sets the radius of this Circle in world units.
    RoundedRectangle.setRadius(int radius, Curve curve)
    Sets the radius of this RoundedRectangle's corners in world units.
    Entity.setRotation(double rotation, Curve curve)
    Sets the rotation of this Entity in radians.
    Entity.setScale(double scale, Curve curve)
    Sets both the horizontal and vertical scale of this Entity to the same percentage.
    Entity.setScaleX(double scaleX, Curve curve)
    Sets the horizontal scale of this Entity as a percentage.
    Entity.setScaleY(double scaleY, Curve curve)
    Sets the vertical scale of this Entity as a percentage.
    Entity.setSkewX(double skewX, Curve curve)
    Sets the horizontal skew of this Entity in radians.
    Entity.setSkewY(double skewY, Curve curve)
    Sets the vertical skew of this Entity in radians.
    Text.setStrokeColor(int strokeColor, Curve curve)
    Sets the color of the stroke of this Text as an RGB integer.
    Text.setStrokeThickness(double strokeThickness, Curve curve)
    Returns the thickness of the stroke of this Text in pixels.
    TilingSprite.setTileScale(double tileScale, Curve curve)
    Sets both the horizontal and vertical scale of the image that is being tiled.
    TilingSprite.setTileScaleX(double tileScaleX, Curve curve)
    Sets the horizontal scale of the image that is being tiled.
    TilingSprite.setTileScaleY(double tileScaleY, Curve curve)
    Sets the vertical scale of the image that is being tiled.
    TilingSprite.setTileX(int tileX, Curve curve)
    Sets the X offset of the image that is being tiled.
    TilingSprite.setTileY(int tileY, Curve curve)
    Sets the Y offset of the image that is being tiled.
    TextureBasedEntity.setTint(int color, Curve curve)
    Sets the tint of this TextureBasedEntity as an RGB integer.
    Rectangle.setWidth(int width, Curve curve)
    Sets the width of this Rectangle in world units.
    RoundedRectangle.setWidth(int width, Curve curve)
    Sets the width of this RoundedRectangle in world units.
    Entity.setX(int x, Curve curve)
    Sets the X coordinate of this Entity in world units.
    Line.setX2(int x2, Curve curve)
    Sets the X coordinate of the end point of this Line.
    Entity.setY(int y, Curve curve)
    Sets the Y coordinate of this Entity in world units.
    Line.setY2(int y2, Curve curve)
    Sets the y coordinate of the end point of this Line.