Background

class cee.Background()

Background configuration

The class defines the view background settings. The background can either be single colored or be a gradient between a top and a bottom color. Image backgrounds are also supported, in which case the image will be rendered on top of the specified background color.

You can access the background object from the view with the View.background property.

Accessors

  • bottomColor

  • image

  • topColor


Accessors

cee.bottomColor()

The bottom color of the background.

If background is single color, the topColor and bottomColor properties are equal

Return type:

Color4

cee.image()

If image background is in use it returns the image uses as a background.

Return type:

Texture

cee.topColor()

The top color of the background.

If background is single color, the topColor and bottomColor properties are equal

Return type:

Color4

Methods

setImage

Background.setImage(texture)
Arguments:

Use the given image as the background of the view

Specify null to clear any previously specified background image.

Return type:

void

setSingleColor

Background.setSingleColor(color)
Arguments:

Sets the background color to the given color (single color)

The background of the view will be cleared with the given color, and no graded background will be rendered. This is the default mode.

Return type:

void

setTopAndBottomColor

Background.setTopAndBottomColor(topColor, bottomColor)
Arguments:

Sets the background color to a gradient defined by a top color and a bottom color

Return type:

void