Skip to content

ScriptingBackground

SuperTux Bot edited this page Jul 8, 2024 · 3 revisions

This file is auto-generated from the SuperTux source code, using the template ScriptingPage.md.

Summary

A Background that was given a name can be manipulated by scripts.

Instances

A Background can be accessed by its name from a script or via sector.name from the console.

Inheritance

This class inherits functions and variables from the following base classes:

Methods

Method Explanation
void set_image(string image) Sets the background's image.
void set_images(string top_image, string middle_image, string bottom_image) Sets the top, middle and bottom background images.
void set_speed(float speed) Sets the background speed.
float get_color_red() Returns the red color value.
float get_color_green() Returns the green color value.
float get_color_blue() Returns the blue color value.
float get_color_alpha() Returns the alpha color value.
void set_color(float red, float green, float blue, float alpha) Sets the background color.
void fade_color(float red, float green, float blue, float alpha, float time) Fades to specified background color in time seconds.

Variables

None.

Constants

None.

Clone this wiki locally