Remove Background

Background
Script

Hides the beatmap background in the storyboard.

Fades out the original background of the beatmap. Usually the first step when storyboarding, so custom background can be used without interference. If you want to set this for multiple beatmaps, you can set the layer name and use that layer as a Difficulty Spesific layer.

Script
public void RemoveBackground(layer = "") => GetLayer(layer).CreateSprite(Beatmap.BackgroundPath).Fade(0,0);
Example Usage
RemoveBackground();
RemoveBackground("Beatmap");