Show Background
Show a background without removing any game elements.
Last updated
Show a background without removing any game elements.
Last updated
The show background
action will change the background without removing any game elements (as opposed to the scene action).
This action uses the assets from the scene action so they still need to be declared as scene assets.
Action ID: Show::Background
Reversible: Yes
Requires User Interaction: No
The following is a comprehensive list of the properties available for you to modify certain behaviors of the background action.
If you want to use an image for the background, remember you first have to declare your image assets and place all your files under the assets/scenes/
directory.
If you'll use CSS to set a custom background, you can use any valid non-spaced value for the background-image
or background-color
CSS properties. Using CSS is perfect for when you want your background to be a solid color. Here are some valid statements:
You can also use CSS gradients for backgrounds.
Monogatari comes with some built-in animations ready for you to use, you can see the list of animations and visualize them here. Using animations is as simple as indicating their name!
The following will set the background to a solid color using a CSS value and modify the duration of the fadeIn animation to 20 seconds.
You can also use CSS to create your own animations, you'll have to apply them to a CSS class and then use the show background statement as follows:
For example, note the following CSS code creating a simple Ken Burn Animation:
Name
Type
Description
resource
string
The resource to use as the background. This resource may be one of the following:
Asset ID: The ID of a scene asset previously defined.
CSS Property: Any valid non-spaced value for the background CSS property.
animations
string
Optional. A list of comma separated animation names with which the background will be shown.
classes
string
Optional. A list of comma separated CSS class names that will be added to the background element. You can create custom classes on your CSS and add them to your background dynamically using this list.
properties
string
Optional. A list of comma separated properties with their respective value.
Property Name
Type
Description
duration
string
The duration for the animations used. The value for this property must be a non-spaced valid value for the animation-duration
CSS property.