ProceduralSky

Inherits: Sky < Resource < Reference < Object

Category: Core

Brief Description

Type of Sky that is generated procedurally based on user input parameters.

Properties

Colorground_bottom_color
floatground_curve
floatground_energy
Colorground_horizon_color
floatsky_curve
floatsky_energy
Colorsky_horizon_color
Colorsky_top_color
floatsun_angle_max
floatsun_angle_min
Colorsun_color
floatsun_curve
floatsun_energy
floatsun_latitude
floatsun_longitude
TextureSizetexture_size

Enumerations

enum TextureSize:

  • TEXTURE_SIZE_256 = 0
  • TEXTURE_SIZE_512 = 1
  • TEXTURE_SIZE_1024 = 2
  • TEXTURE_SIZE_2048 = 3
  • TEXTURE_SIZE_4096 = 4
  • TEXTURE_SIZE_MAX = 5 — Represents the size of the TextureSize enum.

Description

ProceduralSky provides a way to create an effective background quickly by defining procedural parameters for the sun, the sky and the ground. The sky and ground are very similar, they are defined by a color at the horizon, another color, and finally an easing curve to interpolate between these two colors. Similarly the sun is described by a position in the sky, a color, and an easing curve. However, the sun also defines a minimum and maximum angle, these two values define at what distance the easing curve begins and ends from the sun, and thus end up defining the size of the sun in the sky.

The ProceduralSky is updated on the CPU after the parameters change and stored in a texture and then displayed as a background in the scene. This makes it relatively unsuitable for realtime updates during gameplay. But with a small texture size it is still feasible to update relatively frequently because it is updated on a background thread when multi-threading is available.

Property Descriptions

  • Color ground_bottom_color
Setterset_ground_bottom_color(value)
Getterget_ground_bottom_color()

Color of the ground at the bottom.


Setterset_ground_curve(value)
Getterget_ground_curve()

How quickly the ground_horizon_color fades into the ground_bottom_color.


Setterset_ground_energy(value)
Getterget_ground_energy()

Amount of energy contribution from the ground.


  • Color ground_horizon_color
Setterset_ground_horizon_color(value)
Getterget_ground_horizon_color()

Color of the ground at the horizon.


Setterset_sky_curve(value)
Getterget_sky_curve()

How quickly the sky_horizon_color fades into the sky_top_color.


Setterset_sky_energy(value)
Getterget_sky_energy()

Amount of energy contribution from the sky.


Setterset_sky_horizon_color(value)
Getterget_sky_horizon_color()

Color of the sky at the horizon.


Setterset_sky_top_color(value)
Getterget_sky_top_color()

Color of the sky at the top.


Setterset_sun_angle_max(value)
Getterget_sun_angle_max()

Distance from center of sun where it fades out completely.


Setterset_sun_angle_min(value)
Getterget_sun_angle_min()

Distance from sun where it goes from solid to starting to fade.


Setterset_sun_color(value)
Getterget_sun_color()

Color of the sun.


Setterset_sun_curve(value)
Getterget_sun_curve()

How quickly the sun fades away between sun_angle_min and sun_angle_max.


Setterset_sun_energy(value)
Getterget_sun_energy()

Amount of energy contribution from the sun.


Setterset_sun_latitude(value)
Getterget_sun_latitude()

The suns height using polar coordinates.


Setterset_sun_longitude(value)
Getterget_sun_longitude()

The direction of the sun using polar coordinates.


Setterset_texture_size(value)
Getterget_texture_size()

Size of Texture that the ProceduralSky will generate. The size is set using TextureSize.